Skip to content

Instantly share code, notes, and snippets.

@furenku
Created April 16, 2021 14:10
Show Gist options
  • Select an option

  • Save furenku/6dda408c3798ac8bb4f8c168f620718c to your computer and use it in GitHub Desktop.

Select an option

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