Web Development Course

Master the essentials of HTML, CSS, and JavaScript through interactive lessons and live coding practice.

Lesson 1: Say Hello!

Your first HTML code. Try this simple example:

<h1>Hello World!</h1>

Lesson 2: Add Color

Change text color using inline CSS.

<h1 style="color:blue;">Hello World!</h1>

Lesson 3: Add an Image

Use the image tag to display pictures.

<img src="https://placekitten.com/200/200" alt="Cute Cat">

Lesson 4: Buttons

Create clickable buttons in your webpage.

<button>Click Me!</button>

Lesson 5: JavaScript Actions

Make your button interactive using JavaScript.

<button onclick="alert('Hello!')">Click Me!</button>

Final Project: My First Webpage

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>
⬅ Back to Courses