Skip to content

Instantly share code, notes, and snippets.

@furenku
Created October 25, 2021 16:39
Show Gist options
  • Select an option

  • Save furenku/5db0ed6c4beaa29a10ed829185995783 to your computer and use it in GitHub Desktop.

Select an option

Save furenku/5db0ed6c4beaa29a10ed829185995783 to your computer and use it in GitHub Desktop.
primer-sitio
<!-- html:5 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Primer Sitio</title>
</head>
<body>
<!-- header#cabecera -->
<header id="cabecera">
<!-- nav#menu -->
<nav id="menu">
<!-- ul -->
<ul>
<!-- li -->
<li>
<!-- a -->
<a href="index.html">
Inicio
</a>
</li>
<!-- li -->
<li>
<!-- a -->
<a href="uno.html">
Uno
</a>
</li>
<!-- li -->
<li>
<!-- a -->
<a href="dos.html">
Dos
</a>
</li>
</ul>
</nav>
</header>
<!-- h1 -->
<h1>
Primer Sitio!!!
</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment