-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/main.css" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Patua+One' rel='stylesheet' type='text/css'>
<meta charset="UTF-8" />
<title>Huckle Buckle Game</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<div id="container">
<h1>Hot or Cold</h1>
<div class="gameBox">
<p class="">
Step right up!
<br/>
Guess the number this all-knowing machine has chosen at random.
</p>
<div id="input">
<input id="guess" type="text" value="">
<button id="submit">Give it a whirl!</button>
</div><!-- end input -->
<div id="answer">
</div>
</div><!-- end gameBox -->
</div class="newGame">
<button id="reset">New Game</button>
</div>
</div><!-- end container -->
<script src="js/application.js"></script>
</body>
</html>