-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (44 loc) · 1.49 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
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Darshin's Guessing Game</title>
<link rel="stylesheet" href="main.css">
<!-- the MAIN.CSS file is linked here -->
</head>
<body class='main'>
<div id='app' class='center container overlay'>
<div class='center'>
<h1>My First Guessing Game!</h1>
<span id='project-by'> --Project by Darshin Van Parijs--</span>
<h3 id='subtitle'><p>Guess a number between 1 and 100</p></h3>
</div>
<div id='guess-feedback' class='center'>
<h6> </h6>
</div>
<div id='hint-feedback' class='center'>
<h6></h6>
</div>
<div>
<div id='input-parent'>
<input placeholder='enter guess here' class='center' id='player-input' maxlength='3' autofocus=autofocus></input>
<button id='submit-text-btn'>Submit Guess</button>
<button id='get-hint'>Hint</button>
<button id='new-game'>New Game</button>
</div>
<div class='center'>
<ul id='guess-list'>
<li class='guess'>--</li>
<li class='guess'>--</li>
<li class='guess'>--</li>
<li class='guess'>--</li>
<!-- <li class='guess'>--</li> -->
</ul>
</div>
</div>
</div>
</div>
<script src='js/guessing-game.js'></script>
<!-- uncomment the script tag above when you are ready to add JavaScript to your document -->
</body>
</html>