-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 2.76 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>
<head>
<title>Joe's Super cool epic guess who little game :)</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/index.js"></script>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="image-gallery container-lg">
</div>
<div class="hud">
<table class="hud-table">
<tr>
<th>Question</th>
<th class="hud-head" id="middleColumn">Face Selection</th>
<th class="hud-head">Vote</th>
</tr>
<tr>
<td>
<!-- Default dropup button -->
<div class="btn-group dropup hud-dropup">
<button type="button" id="hudDropup" class="btn btn-secondary dropdown-toggle questions-button" data-bs-toggle="dropdown" aria-expanded="false">
Select Question
</button>
<!--This gets added via JS-->
<!-- <ul class="dropdown-menu questions-list">
<!-- Dropdown menu links
</ul> -->
</div>
</td>
<td class="hud-column" id="middleColumn">
<div class="image-disabled">
</div>
<!--Image Selection Display-->
<div class="image-display">
<div class="faceSelect">
<img src="images/no-character.jpg" class="selected-face">
</div>
<p style="margin-top: 0.5em;">Selected Face</p>
</div>
</td>
<td id="vote-button" class="hud-column">
<!--Vote Button-->
<p style="padding: 0.5em 1em; margin-bottom: 50px;">Choose an Option Before Voting</p>
</td>
</tr>
</table>
</div>
</body>
</html>