Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 29, 2018 11:06
Show Gist options
  • Save DavidPeralvarez/4b704024816e88a77f19d4f82b448b21 to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/4b704024816e88a77f19d4f82b448b21 to your computer and use it in GitHub Desktop.
Párrafos en HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mi primera web</title>
</head>
<body>
<h1>Título de máximo nivel</h1>
<h2>Título de nivel 2</h2>
<h3>Título de nivel 3</h3>
<h4>Título de nivel 4</h4>
<h5>Título de nivel 5</h5>
<h6>Título de nivel 6</h6>
<p>Esto es un párrafo y lo utilizaré para crear contenido increíble</p>
<p>Esto es otro párrafo un poco más largo e igual de poco original que el anterior</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment