Skip to content

Instantly share code, notes, and snippets.

@GeoffDusome
Last active January 17, 2019 15:44
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 GeoffDusome/73f4788480bc7ef2ff997f733b3fff42 to your computer and use it in GitHub Desktop.
Save GeoffDusome/73f4788480bc7ef2ff997f733b3fff42 to your computer and use it in GitHub Desktop.
Web Development 101
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<header>
<h1><a href="#" rel="" class="logo">My Website</a></h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<article>
<h2>About Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras ut enim eu augue bibendum facilisis sed at magna.</p>
<p>Cras varius auctor enim nec iaculis. Integer viverra turpis felis, et egestas sapien blandit id.</p>
<h3>Subsection</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</article>
<aside>
<h2>Supporting Content or Sidebar</h2>
<p>Cras varius auctor enim nec iaculis. Integer viverra turpis felis, et egestas sapien blandit id.</p>
</aside>
<footer>
<small>Copyright &copy; My Website 2019</small>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment