Skip to content

Instantly share code, notes, and snippets.

@ramsunvtech
Created June 27, 2016 07:35
Show Gist options
  • Select an option

  • Save ramsunvtech/7819dbab26fea697a6f3eff7f0070de9 to your computer and use it in GitHub Desktop.

Select an option

Save ramsunvtech/7819dbab26fea697a6f3eff7f0070de9 to your computer and use it in GitHub Desktop.
Simple HTML5 Page Structure
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Title Goes here</title>
<link rel="stylesheet" href="<Your css file Path>">
</head>
<body>
<header>Header Goes Here!</header>
<nav> Your Menu with UL & LI elements can come here</nav>
<h1>Page Heading</h1>
<article>
  <h2>Article Heading</h2>
  <p>Article Goes here</p>
</article>
<footer>
  <p>Copyright Content Goes here</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment