-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartup.html
More file actions
45 lines (44 loc) · 1.31 KB
/
startup.html
File metadata and controls
45 lines (44 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Oberin World Map</title>
<style type="text/css">
body {
overflow: hidden;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}
#boot {
background-color: #bcbcbc;
background-size: 100% 100%;
display: flex;
justify-content: center;
align-items: center;
height: 694px;
width: 100%;
}
#boot img{
width: 74.5%;
}
</style>
</head>
<body style="margin: 0;">
<div id="boot">
<audio style="display: none" controls autoplay>
<source src="sounds/startup.wav" type="audio/wav">
</audio>
<img src="images/boot2.gif" alt="startup">
<script type="text/javascript">
setTimeout(function (){
window.location = "index.html"
}, 7000)
</script>
</div>
</body>
</html>