-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (25 loc) · 888 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Huckle Buckle Beanstalk</title>
<link href="css/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Huckle Buckle Beanstalk</h1>
<form id="guess-form">
<label for="guess">I have a number between 1 and 100. Try to guess it.</label>
<input type="text" name="guess" id="guess">
<div class="error off">Make sure your guess is a number between 1 and 100.</div>
<button type="submit">Guess</button>
<button id="reset" class="off">Play again</button>
</form>
<div class="response off">
<h2 id="guess-vs-number"></h2>
<h3 id="guess-vs-guess"></h3>
<p id="num-guesses"></p>
</div>
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/game-ck.js"></script>
</body>
</html>