-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (75 loc) · 2.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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guessing Game</title>
<!-- Bootstrap and CSS here-->
<link rel="stylesheet" href="style.css">
<!--
<style>
.center {
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
img {
display: inline;
width: 200px;
height: 100px;
}
#footer {
width: 100%;
border-top: solid 2px black;
background-color: white;
position: fixed;
bottom: 0;
}
</style>
-->
</head>
<body>
<div id='app'>
<div id='headers' class="center">
<!-- Title and subtitles! -->
<h1 id="title-heading">Can you find the code?</h1>
<h2 id="subtitle-heading">Guess the correct number between 1-100 and unlock the unholy jackelope!</h2>
</div>
<div id='main' class="parent" class="center">
<div id='input-parent'>
<!-- Player's guess input, and submit button -->
<input type="number" placeholder="?" autofocus=autofocus maxlength="3" id="player-input"></input>
<button id="submit">I feel lucky!</button>
</div>
<div id='guesses'>
<!-- unordered list of guesses -->
<ul>
<li class="guess">?</li>
<li class="guess">?</li>
<li class="guess">?</li>
<li class="guess">?</li>
<li class="guess">?</li>
</ul>
</div>
<div id="menu-btns">
<!-- reset and hint buttons -->
<button><Hint!></button>
<button>Reset</button>
</div>
</div>
</div>
<div id='footer'>
<div>
<div class=''>
<img src='[email protected]'></img>
</div>
<div class='' class="center">
<h4>Game by Willy Raedy</h4>
</div>
<div class=''>
<img src='grace_hopper_academy.png'></img>
</div>
</div>
</div>
</body>
</html>