Created
September 7, 2012 19:34
The app's HTML page
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
<html> | |
<head> | |
<title>My Clojure Adventure's Hockey Player Lookup</title> | |
<link href="/css/bootstrap.css" rel="stylesheet"> | |
</head> | |
<body> | |
<body> | |
<div class="container content"> | |
<div class="row"> | |
<div class="span12" style="margin-top: 1em; margin-left: 30px;"> | |
<form class="form-search"> | |
<input type="text" id="lname" placeholder="Player's Last Name" /> | |
<input type="button" id="search-btn" value="Get Stats!" /> | |
</form> | |
</div> | |
</div> | |
<div id="results"></div> | |
<script type="text/javascript" src="./hockey.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here's two
<body>
blocks. Fix it please :)