Master the essentials of HTML, CSS, and JavaScript through interactive lessons and live coding practice.
Your first HTML code. Try this simple example:
<h1>Hello World!</h1>
Change text color using inline CSS.
<h1 style="color:blue;">Hello World!</h1>
Use the image tag to display pictures.
<img src="https://placekitten.com/200/200" alt="Cute Cat">
Create clickable buttons in your webpage.
<button>Click Me!</button>
Make your button interactive using JavaScript.
<button onclick="alert('Hello!')">Click Me!</button>
Combine everything you’ve learned to create your first webpage.
<h1 style="color:blue;">Hi, I am a Web Developer!</h1>
<p style="color:green;">I love building websites!</p>
<img src="https://placekitten.com/250/200" alt="My Pet">
<button onclick="alert('Welcome to my webpage!')">Click Me</button>