-
Notifications
You must be signed in to change notification settings - Fork 0
/
end.html
53 lines (49 loc) · 1.25 KB
/
end.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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>Subreddit guesser</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="backend.js"></script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<style>
img {
width: 25%;
}
video {
width: 25%;
}
.float{
float: left;
overflow: auto;
}
.inline{
display:inline-block;
}
.vertical-center{
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
</style>
<body>
<div class="w3-container w3-center w3-xxxlarge w3-black">
Guess The Subreddit
</div>
<div class="w3-xxlarge w3-container w3-center">
<div class="inline">
You got
</div>
<div class="inline" id="score"></div>
<div class="inline">
Points!
</div>
</div>
<div class="w3-container w3-center w3-padding">
<button id="new" class="w3-btn w3-black w3-xlarge" onclick="window.location.replace('./game.html')">Play Again</button>
</div>
</body>