Menu
Coddy logo textTech

What is HTML?

Part of the Fundamentals section of Coddy's HTML journey — lesson 1 of 60.

HTML is an incredibly powerful and versatile language that lets you create everything from simple web pages to complex web applications, with the amazing ability to structure content on the web.

challenge icon

Challenge

Easy

Press the run code button to run your first code in HTML.

Try it yourself

<html>
  <head>
    <title>My First HTML Page</title>
  </head>
  <body>
    <p>Hello HTML!</p>
  </body>
</html>

All lessons in Fundamentals