-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWINNER.html
60 lines (55 loc) · 1.46 KB
/
WINNER.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
<!DOCTYPE html>
<html>
<head>
<title>Blank HTML Page</title>
<style>
body {
background-image: url("images/chalkboard.png");
background-repeat: no-repeat;
background-size: cover;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Brush Script MT', cursive;
font-size: 22px;
}
p {
color: antiquewhite;
font-size: 60px;
text-align: center;
justify-content: center;
font-family: 'Brush Script MT', cursive;
}
.small-margin{
margin-bottom: 10px;
}
span{
display: flex;
justify-content: center;
align-items: center;
}
h1 {
font-size: 88px;
text-align: center;
color: antiquewhite;
}
</style>
<script src='itsover.js'></script>
</head>
<body>
<div class="container">
<div>
<div id="ynpopup" float: center;">
</div>
<h1>GAME OVER</h1>
<p>↓↓ If want to play again click here ↓↓</p>
<span >
<button onclick="window.location.href = 'Seceret.html';" style="font-size: 24px;">Home Page</button>
</span>
</div>
</div>
</body>
</html>