-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfrontpage.html
46 lines (45 loc) · 1.03 KB
/
frontpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fireman Game</title>
<link rel="stylesheet" href="frontpage.css" />
<link rel="stylesheet" href="style.css">
<style>
body{
background-color: orange;
}
#maincontent{
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
img{
margin-bottom: 0px;
}
h1{
margin-top: 0px;
}
p{
margin-top:0px;
}
</style>
</head>
<body>
<div id="maincontent">
<img src="./images/file copy.png" alt="">
<h1>FIREMAN</h1>
<p>Are you ready to play?</p>
<button id="redirectButton">Start</button>
</div>
<script>
document
.getElementById("redirectButton")
.addEventListener("click", function () {
window.location.href = "mainpage.html";
});
</script>
</body>
</html>