Skip to content

Instantly share code, notes, and snippets.

@DeTeam
Created June 16, 2014 12:42
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 DeTeam/7744fadca4b149572819 to your computer and use it in GitHub Desktop.
Save DeTeam/7744fadca4b149572819 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<!-- ALL OTHER FILES -->
<style>
.green {
color: green;
}
</style>
<script src="jquery-1.11.1.js"></script>
<script src="application.js"></script>
</head>
<body>
<header>
<h1>
<a href="">Coffee Shop</a>
</h1>
<nav>
<ul class="menu">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
</nav>
</header>
<main>
<a class="green" href="#" onclick="colorInRed(this);">Some coffee?</a>
<div id="main-content">
</div>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment