Skip to content

Instantly share code, notes, and snippets.

@dimcoderx
Forked from MicBrain/structure.html
Created August 10, 2017 10:24
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 dimcoderx/e3a7699c0c9147da9824610b1dde0a3e to your computer and use it in GitHub Desktop.
Save dimcoderx/e3a7699c0c9147da9824610b1dde0a3e to your computer and use it in GitHub Desktop.
The standard HTML5 page structure.
<!DOCTYPE HTML>
<html>
<head>
<!--To get more Meta Tags visit here: https://gist.github.com/MicBrain/46a9723158307fd30db66a4b2af85411 -->
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html">
<title> The name of your website. </title>
</head>
<body>
<header>
<nav>
<ul>
<li> Put your Website MENU here. </li>
</ul>
</nav>
</header>
<section>
<article>
<header>
<h2>The title of Article 1</h2>
<p> Content of Article 1.</p>
</header>
<header>
<h2>The title of Article 2</h2>
<p> Content of Article 2.</p>
</header>
</article>
</section>
<aside>
<h2> Section Tite. </h2>
<p> Content of the section. </p>
</aside>
<footer>
<p>Copyright @year @name</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment