<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Mi página</title>
<style>
body{font-family:system-ui}
.card{padding:1rem}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Inicio</a></li>
<li><a href="/blog" class="active">Blog</a></li>
</ul>
</nav>
</header>
<main>
<article class="card" id="post">
<h1>Formatear HTML <small>sin romper nada</small></h1>
<p>
Este párrafo tiene <strong>negrita</strong>,<em>cursiva pegada</em> y un
<a href="https://miguelacm.es/tools">enlace</a>. Los espacios entre etiquetas inline se
respetan porque cambiarlos altera lo que se ve en pantalla.
</p>
<pre> el texto preformateado
se queda tal cual</pre>
<img src="foto.jpg">
<p id="post">id repetido</p>
</article>
</main>
<script>
document.querySelector("#post").addEventListener("click", () => {
console.log("hola");
});
</script>
</body>
</html>
2 avisos en el HTML original
⚡ by MACM · miguelacm.es