Skip to content

Instantly share code, notes, and snippets.

@pankajladhar
Last active April 9, 2018 09:25
Show Gist options
  • Save pankajladhar/badc5e5013faa0a1a804a266bd597319 to your computer and use it in GitHub Desktop.
Save pankajladhar/badc5e5013faa0a1a804a266bd597319 to your computer and use it in GitHub Desktop.
<!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>Layout Markup</title>
</head>
<body>
<div class="wrapper" id="wrapper">
<header>
<img class="brand" src="http://somedomain.com/images/logo" alt="logo" />
<nav class="main_nav">
<ul>
<li>
<a href="http://somedomain.com/item1">item1</a>
<a href="http://somedomain.com/item2">item2</a>
<a href="http://somedomain.com/item3">item3</a>
<a href="http://somedomain.com/item4">item4</a>
</li>
</ul>
</nav>
</header>
<div class="container">
<aside></aside>
<section></section>
</div>
<footer>
<nav class="footer_nav">
<ul>
<li>
<a href="http://somedomain.com/item1">item1</a>
<a href="http://somedomain.com/item2">item2</a>
<a href="http://somedomain.com/item3">item3</a>
<a href="http://somedomain.com/item4">item4</a>
</li>
</ul>
</nav>
</footer>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment