Created
October 5, 2015 17:48
-
-
Save DevelopIntelligenceBoulder/35e1dbe67ca3f2740219 to your computer and use it in GitHub Desktop.
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>PeakMap</title> | |
<link rel="stylesheet" type="text/css" href="css/styles.css"> | |
</head> | |
<body> | |
<header class="banner"> | |
<h1>PeakMap</h1> | |
<p>Mapping Colorado's Peaks</p> | |
</header> | |
<nav> | |
<ul> | |
<li><a href="index.html">Home</a></li> | |
<li><a href="profile.html">Profile</a></li> | |
<li><a href="videos.html">Videos</a></li> | |
</ul> | |
</nav> | |
<main> | |
<ul class="peakslist"> | |
<h2>Peaks</h2> | |
<li class="peak"> | |
<p>Mount Elbert</p> | |
<p>Sawatch Range</p> | |
<p>14,440 ft 4401 m</p> | |
</li> | |
<li class="peak"> | |
<p>Mount Massive</p> | |
<p>Sawatch Range</p> | |
<p>14,428 ft 4398 m</p> | |
</li> | |
<li class="peak"> | |
<p>Mount Harvard</p> | |
<p>Sawatch Range</p> | |
<p>14,421 ft 4396 m</p> | |
</li> | |
</ul> | |
<section> | |
<h2>Another section to delete</h2> | |
<article> | |
<header> | |
<h3>stuff</h3> | |
<p>peak.properties</p> | |
</header> | |
<p>Info about peak</p> | |
<p>Info about peak</p> | |
</article> | |
<article> | |
<header> | |
<h3>Header 3</h3> | |
<p>peak.properties</p> | |
</header> | |
<p>Info about peak</p> | |
<p>Info about peak</p> | |
</article> | |
</section> | |
</main> | |
<aside> | |
<h2>Map will go here</h2> | |
<p>map!</p> | |
</aside> | |
<footer> | |
<p>PeakMap 2015 ©</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment