Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Last active June 19, 2020 21:58
Show Gist options
  • Save agustinpfs/b2074c389d61909ac4ab17f82d5241de to your computer and use it in GitHub Desktop.
Save agustinpfs/b2074c389d61909ac4ab17f82d5241de to your computer and use it in GitHub Desktop.
HTML básico. Encabezados.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Encabezados</title>
</head>
<body>
<!-- Emmet: h${Encabezado h$}*3 -->
<h1>Encabezado h1</h1>
<h2>Encabezado h2</h2>
<h3>Encabezado h3</h3>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment