-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (59 loc) · 1.33 KB
/
index.html
File metadata and controls
74 lines (59 loc) · 1.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guessing Game</title>
<!-- Bootstrap and CSS here-->
<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'>
<!-- Title and subtitles! -->
</div>
<div id='main'>
<div id='input-parent'>
<!-- Player's guess input, and submit button -->
</div>
<div id='guesses'>
<!-- unordered list of guesses -->
</div>
<div id="menu-btns">
<!-- reset and hint buttons -->
</div>
</div>
</div>
<div id='footer'>
<div>
<div class=''>
<img src='fa-logo@2x.png'></img>
</div>
<div class=''>
<h4>Project by Danielle Westerman</h4>
</div>
<div class=''>
<img src='grace_hopper_academy.png'></img>
</div>
</div>
</div>
</body>
</html>