Avatar photo

Playcode123.com

Blog.Playcode123.com is a blog from Diensten2000X. Diensten2000X has years of experience in building websites and providing hands-on training in pure HTML, CSS and JavaScript. Through practical knowledge and real examples, Diensten2000X helps beginners understand how modern web pages, websites and web apps are created. This blog is connected with the portal Playcode123.com and shares useful information for visitors who want to learn more about web development.

CSS border-radius and CSS box-shadow

CSS border-radius codeUse border-radius when you want to make sharp corners round. <!DOCTYPE html> <html> <head> <title>CSS border-radius example</title> <style> div { width: 300px; padding: 20px; background-color: lightblue; border-radius: 20px; } </style> </head> <body> <h1>Box with round corners</h1> <div> This…

JavaScript Functions for Beginners

A function is a piece of code that you can reuse. This is useful because you do not have to write the same code again and again. Example <!DOCTYPE html> <html> <head> <title>JavaScript Functions</title> </head> <body> <h1>JavaScript Functions</h1> <p id=”output”></p>…

Create an Interactive Button with JavaScript

Create an Interactive Button with JavaScript With JavaScript, you can make something happen when someone clicks a button. This makes your website interactive. Example <!DOCTYPE html> <html> <head> <title>JavaScript Button</title> </head> <body> <h1>My First Button with JavaScript</h1> <p id=”text”>Click the…

Javascript Variables

JavaScript Variables: let and const Explained Simply JavaScript variables are used to store data. Think of a name, age, or score.With let, you create a variable that can be changed later. With const, you create a variable that stays the…

HTML Form Controls: Build a Local Practice Selector

Last updated: 28 August 2026 Separate examples show what each HTML control looks like. This project shows how the controls work together. After reviewing the HTML examples on Playcode123.com, build a small activity selector that displays your choices locally. This…

Move Files with Filezilla

Move Files with Filezilla FileZilla is like a digital bridge between your computer and a web server. It helps you move files back and forth securely and efficiently. Here’s a simple breakdown of what you can do with it: General…

The use of a .js file as an external file

A .js file as an external file:   What it is: A .js file is a JavaScript file—basically, it contains code that makes your webpage interactive (like buttons working, menus opening, etc.). Why use it externally? Instead of writing JavaScript…

A Separate style.css File

What is a style.css File? A style.css file is a separate file that contains CSS (Cascading Style Sheets) code. CSS is used to control the look and feel of a webpage — things like colors, fonts, spacing, and layout. How…