-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (40 loc) · 1.51 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
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset ="utf-8">
<meta content-type="application/javascript">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HOT || COLD </title>
<link rel="shortcut icon" href="" />
<link rel="stylesheet" href="css/style.css">
</head>
<body >
<header>
<div >
<h1>
<span class="hot" > HOT </span><span class="colon cold">:</span><span class="colon hot">:</span><span id="cold" class="cold"> COLD </span>
</h1>
</div>
</header>
<main id="main">
<form >
<label for="userGuess"> The Pirate has locked the Treasure with a Number between 0-100. Get that number before he finds <em>you</em> out!</label> </br>
<input type="text" id="userGuess" size="5" maxlength="3" >
</br>
</br>
<button id="newGuess"> Guess </button>
<button id="newTask" type="reset"> New Game </button>
</form>
<div id="displayResult" class="hotReply coldReply neitherReply correctReply waitingReply"></div>
<!-- THE PROGRESS BAR -->
<h3>Monitor Your Progress</h3>
<div class="wrapper3"><div id="progressBar" ></div></div>
</main>
<footer>
<div><h4> © 2014 BAYO MABORUKOJE</h4></div>
</footer>
<script type="text/javascript" src="js/jquery-1.11.1.js"></script>
<!--<script src="js/jquery-1.9.1.min.js"></script> -->
<script type="text/javascript" src="js/myscript.js"></script>
</body>
</html>