<!doctype html>
<html>
<head>
...
</head>
<body>
<header>
<ul>
<li>This is an (u)nordered (l)ist</li>
<li>Which provides some (l)ist (i)tems</li>
<li>On the top of the page</li>
</ul>
</header>
<main>
<article>
<img src="hero-image.jpg" alt="An (im)a(g)e to ilustrate the article" />
<h1>This is the (1)st level (h)eading for my article</h1>
<p>
This is a (p)aragraph containing some text for my article
<a href="http://another-page"
>This is an (a)nchor link that points to another document or section
</a>
</p>
</article>
</main>
<footer>This is the footer of the document/page</footer>
</body>
</html>

HTML, que significa Lenguaje de Marcado de Hipertexto, es un lenguaje de programación comúnmente utilizado para crear y estructurar documentos (anteriormente llamados páginas web) para la World Wide Web. Proporciona la base para crear la estructura y el diseño del contenido web, permitiendo a los desarrolladores especificar cómo se muestran elementos como texto, imágenes, enlaces y multimedia en una página web.