
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Título de la Página</title>
</head>
<body>
<!-- Contenido de la página -->
</body>
</html><!DOCTYPE html>: Define que el documento es HTML5.<html>: Contiene todo el documento HTML.<head>: Incluye metadatos como el título, enlaces a CSS/JS y configuración.<body>: Contiene el contenido visible de la página.<h1>Título Principal</h1>
<h2>Subtítulo</h2>
<h3>Encabezado menor</h3>
<!-- ... hasta h6 --><p>Este es un párrafo.</p>
<strong>Texto en negrita</strong>
<em>Texto en cursiva</em>
<br> <!-- Salto de línea -->
<hr> <!-- Línea horizontal --><a href="https://ejemplo.com" target="_blank">Enlace</a>href: URL del enlace.target="_blank": Abre el enlace en una nueva pestaña.<img src="imagen.jpg" alt="Descripción" width="200">src: Ruta de la imagen.alt: Texto alternativo (importante para accesibilidad).<form action="/procesar" method="POST">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit">Enviar</button>
</form>action: URL donde se envía el formulario.method: GET (visible en URL) o POST (oculto).id: Identificador único.class: Clase para aplicar estilos CSS.style: Estilos en línea (CSS).src: Ruta de archivos (imágenes, scripts).href: Ruta de enlaces.<!-- En el <head> -->
<link rel="stylesheet" href="estilos.css">
<!-- O con estilos internos -->
<style>
body { font-family: Arial; }
</style><!-- Al final del <body> -->
<script src="script.js"></script>
<!-- O código interno -->
<script>
alert("Hola Mundo");
</script><!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Mi Primera Página</title>
<style>
body { font-family: Arial; }
</style>
</head>
<body>
<header>
<h1>Bienvenido</h1>
</header>
<nav>
<a href="#inicio">Inicio</a> |
<a href="#contacto">Contacto</a>
</nav>
<main>
<section>
<p>Esta es mi primera página web.</p>
</section>
</main>
<footer>
<p>© 2024 Mi Página</p>
</footer>
<script>
console.log("Página cargada");
</script>
</body>
</html>