Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Last active June 19, 2020 22:43
Show Gist options
  • Save agustinpfs/a88af3d9d0e4c70aca67b1cd86788136 to your computer and use it in GitHub Desktop.
Save agustinpfs/a88af3d9d0e4c70aca67b1cd86788136 to your computer and use it in GitHub Desktop.
HTML básico. Listas.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Listas</title>
</head>
<body>
<h1>Listas</h1>
<!-- Emmet: ul>li{Linea $}*5 -->
<ul>
<li>linea 1</li>
<li>linea 2</li>
<li>linea 3</li>
<li>linea 4</li>
<li>linea 5</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment