Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Luana-Menezes
Created November 16, 2019 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Luana-Menezes/cd241f813134d5b9a5438b203149fe73 to your computer and use it in GitHub Desktop.
Save Luana-Menezes/cd241f813134d5b9a5438b203149fe73 to your computer and use it in GitHub Desktop.
Html 5 boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Title</title>
<meta name="description" content="A description of the page">
<meta name="robots" content="index,follow">
<link rel="stylesheet" href="css/main.css">
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<header>
<div>
<h1>Page title</h1>
<img src="http://placehold.it/960x150">
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- Main Content -->
</main>
<footer>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment