-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (46 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Starting</title>
<style>
* {
background-color: black;
}
.strlogo {
display: block;
margin: auto;
padding-top: 200px;
width: 100px;
}
.gif {
display: block;
margin: auto;
padding-right: 50px;
width: 100px;
padding-top: 100px;
}
h1 {
color: blanchedalmond;
display: block;
margin: auto;
align-self: center;
padding-left: 500px;
padding-top: 100px;
}
</style>
</head>
<body>
<img src="img/logo.png" alt="" class="strlogo">
<img src="img/gif/tenor.gif" alt="" class="gif">
<h1>Thanks for using me</h1>
</body>
<script>
function displayTime() {
window.location.replace("start.html")
}
const createClock = setInterval(displayTime, 5000);
</script>
</html>