-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (35 loc) · 1.28 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>HotorCold</title>
<link type="text/css" href="css/reset.css" rel="stylesheet">
<link type="text/css" href="css/styles.css" rel="stylesheet">
<!-- <link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'> -->
<link type="favicon.png" href="img/andela_icon.png">
<link rel="icon" type="image/png" href="img/andela_icon.png" />
</head>
<body>
<img src="img/m.jpg" alt="logo">
<h3>Welcome! I have thought of a whole number between 0 and 100. Try to guess the number. If you're closer to the number I've guessed, you're hotter! Otherwise, you're colder! Game On</h3>
<div id="main">
<div class="bar" id="hot"></div>
<form>
<input name="field" type="number" name="choice" min="0" max="100" value="Enter Guess" id="numberForm"></input>
<p>
<input type="button" value="Guess" name="trya" class="buttons" id="guess"></input>
<input type="button" value="Refresh" class="buttons" id="refresh"></input>
</p>
</form>
<p id="feedback"></p>
<div id="result">
<p><span id="score"></span></p>
</div>
<div class="bar" id="cold"></div>
</div>
<div id="previous">
<ul id="prev">
<li></li>
</ul>
</div>
<script type="text/javascript" src="js/styles.js"></script>
</body>