El HTML es el lenguaje que estructura el contenido de las páginas web. Su documento básico incluye:
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Mi Página</title>
</head>
<body>
<h1>Encabezado</h1>
<p>Párrafo de texto.</p>
</body>
</html>
<html>
: Elemento raíz.<head>
: Metadatos como el título.<body>
: Contenido visible (texto, imágenes).<h1>
: Encabezado principal.<p>
: Párrafo.