Skip to content

Instantly share code, notes, and snippets.

@LeoFNaN
Last active November 11, 2016 02:38
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 LeoFNaN/c9da964269d0ec3827641de60624109e to your computer and use it in GitHub Desktop.
Save LeoFNaN/c9da964269d0ec3827641de60624109e to your computer and use it in GitHub Desktop.
HTML5 Doctype Structure (Normalize, preset paths)
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Welcome to samsara! Strive to be altruistic.</title>
<meta name="description" content="This is a template for quick use." />
<meta name="keywords" content="Template" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png" />
<meta name="robots" content="noindex, nofollow" />
<meta name="author" content="Name" .>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<header>
<nav class="nav"><a href="#" title="Home">Home</a></nav>
</header>
<section>
<div class="row">
<div class="main">
<h1>Welcome!</h1>
<p>A paragraph for the main column text. This is just a template. But it also is derived from a lot of processes
in the web world, gratefulness.</p>
</div>
</div>
</section>
<aside>
<div class="row">
<h2>Side Header</h2>
<p>A great paragraph of content that will help entice and test the developer.</p>
</div>
</aside>
<footer>
<div class="row">
<p>Copyright &copy; ~ Samsara</p>
</div>
</footer>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>
@LeoFNaN
Copy link
Author

LeoFNaN commented Nov 10, 2016

Updated with bootstrap assets and sections.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment