0Pricing
HTML for Kids · Lesson

What is HTML?

Learn the basics of HTML and why it’s important for creating web pages.

What is HTML? is a free HTML for Kids lesson on CoddyKit — lesson 1 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the HTML for Kids learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.

1

What is HTML?

Welcome to the world of HTML! Today, we’ll explore what HTML is and why it’s so important. By the end of this lesson, you’ll know the basics of how web pages are created.

What is HTML? — illustration 1

2

What Does HTML Stand For?

HTML stands for HyperText Markup Language. It’s the language used to create web pages.

Think of HTML as the blueprint of a web page. It tells the browser how to display text, images, and other elements.

3

Why is HTML Important?

HTML is important because it:

  • Builds Web Pages: Every web page you visit is created using HTML.
  • Simple and Powerful: It’s easy to learn but can create amazing things!
  • Universal: HTML works on all devices and browsers.

Without HTML, the internet wouldn’t look as awesome as it does!

4

HTML in Action

Here’s a simple example of HTML:

<!DOCTYPE html>
<html>
  <head>
    <title>My First Page</title>
  </head>
  <body>
    <h1>Welcome to My Page!</h1>
    <p>This is a paragraph of text.</p>
  </body>
</html>

5

How HTML Works

HTML uses tags to structure content. Tags are like containers that tell the browser what to do.

  • Opening Tag: <h1>
  • Closing Tag: </h1>
  • Content: The text or information inside the tags.

Together, they form an element: <h1>Hello</h1>

6

Viewing HTML Code

You can see the HTML code behind any web page!

  1. Right-click on a web page.
  2. Select View Page Source.
  3. A new tab will open with the HTML code!

Try it on your favorite website to see how it’s built.

7

HTML is Everywhere!

HTML isn’t just for web pages. It’s used in:

  • Emails: Fancy email designs.
  • Games: Simple browser-based games.
  • Apps: Mobile apps that use web technologies.

Learning HTML is the first step to becoming a web creator!

8

Try Writing HTML!

Here’s a simple HTML structure. Try writing it yourself:

<!DOCTYPE html>
<html>
  <head>
    <title>My Test Page</title>
  </head>
  <body>
    <h1>Hello, World!</h1>
    <p>This is my first HTML page.</p>
  </body>
</html>

9

10

Great Job!

You’ve learned what HTML is and why it’s important. You’ve also seen how to write basic HTML code and learned about its structure. Get ready to dive deeper into the world of HTML in the next lesson!

What is HTML? — illustration 10

Frequently asked questions

Is the “What is HTML?” lesson free?

Yes — the full text of “What is HTML?” is free to read here on the web, and the HTML for Kids course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the HTML for Kids course, upgrade to CoddyKit PRO.

What will I learn in “What is HTML?”?

Learn the basics of HTML and why it’s important for creating web pages. You practise HTML for Kids with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start HTML for Kids?

No prior experience is required. HTML for Kids on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 4, so you can start here or from the beginning and move at your own pace.

How long does the “What is HTML?” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this HTML for Kids lesson?

Yes. Every HTML for Kids lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. What is HTML?
  2. HTML Structure: The Building Blocks
  3. HTML Tags and Elements
  4. Setting Up Your First HTML Page
← Back to HTML for Kids