HTML Home

HTML is the standard markup language used to structure content on the web. This section introduces the basics and core concepts of HTML.

On this page

HTML is the standard markup language used to create web pages. It defines the structure of content on the web and is the foundation of every website.

What You Can Do with HTML

HTML allows you to describe the structure of a page using elements such as headings, paragraphs, links, images, lists, and more.

<h1>Page Title</h1>
<p>This is a paragraph.</p>
<a href="https://example.com">A link</a>

How HTML Works

HTML uses tags to label different types of content. Browsers read these tags and display the page accordingly. The tags themselves are not shown to the user.

Learning HTML

You do not need special tools or software to start learning HTML. A simple text editor and a web browser are enough.

This documentation focuses on short explanations and clear examples. Each page covers a single topic so you can quickly find what you need.

Learning by Examples

Examples are an essential part of learning HTML. Reading the code and understanding what each part does will help you learn faster.

<!DOCTYPE html>
<html>
  <body>
    <h1>Hello HTML</h1>
    <p>My first web page.</p>
  </body>
</html>

What to Learn Next

  • HTML Elements and tags
  • HTML Attributes
  • HTML Headings and paragraphs
  • HTML Links and images

Use the navigation to explore each topic step by step.