-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (40 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="/manifest.json" />
<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>Trackle™</title>
<meta name="theme-color" content="#fdfdfe" />
<link rel="icon" type="image/x-icon" href="/logo.png" />
<style>
html, body, iframe {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
background-color: #fdfdfe; /* Permanent background color */
font-family: Arial, sans-serif;
color: #333;
}
#logo {
opacity: 1; /* Remove fade effect */
}
</style>
<script>
// Redirect to home.html after 3 seconds
setTimeout(function() {
window.location.href = "home.html";
}, 3000);
</script>
</head>
<body>
<!-- Updated image source -->
<img id="logo" src="/logoA.gif" alt="Trackle logo" width="200" height="200">
</body>
</html>