Last active
January 17, 2019 15:44
-
-
Save GeoffDusome/73f4788480bc7ef2ff997f733b3fff42 to your computer and use it in GitHub Desktop.
Web Development 101
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Hello World</title> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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 © 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