Skip to content

Instantly share code, notes, and snippets.

@paikwiki
Last active April 20, 2018 06:57
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 paikwiki/77767e699f613313eb5595026ae2b585 to your computer and use it in GitHub Desktop.
Save paikwiki/77767e699f613313eb5595026ae2b585 to your computer and use it in GitHub Desktop.
html01-1
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website title</title>
</head>
<body>
<header>
<h1><a href="#">Website title</a></h1>
<section>
<nav>
<ul>
<li><a href="#">Menu item1</a></li>
<li><a href="#">Menu item2</a></li>
<li><a href="#">Menu item3</a></li>
</ul>
</nav>
</section>
</header>
<article>
<header>
<h1>Page title</h1>
</header>
<section>
Page section
</section>
</article>
<footer>
<p>
© 2018. <a href="mailto://#">Author</a> ALL RIGHTS RESERVED.
</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment