Título: Guía rápida para aprender HTML básico
HTML (HyperText Markup Language) es el lenguaje con el que se crean páginas web. A
continuación, una lista de etiquetas básicas:
1. <html> ... </html> → Indica el inicio y fin del documento.
2. <head> ... </head> → Contiene metadatos (título, estilo, scripts).
3. <body> ... </body> → Contiene el contenido visible.
4. <h1> a <h6> → Títulos de mayor a menor jerarquía.
5. <p> → Párrafo de texto.
6. <a href="..."> → Enlaces.
7. <img src="..." alt="..."> → Imágenes.
Ejemplo simple:
<html>
<head><title>Mi página</title></head>
<body>
<h1>Hola mundo</h1>
<p>Este es mi primer sitio web.</p>
</body>
</html>