-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 1.36 KB
/
index.html
File metadata and controls
53 lines (51 loc) · 1.36 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Willkommen bei FridgeSort</title>
<style>
body {
margin: 0;
height: 100vh;
background-color: #1E1E2E;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
flex-direction: column;
text-align: center;
}
.loader {
margin-top: 30px;
width: 48px;
height: 48px;
border: 5px solid #50FA7B;
border-bottom-color: transparent;
border-radius: 50%;
animation: rotate 1s linear infinite;
}
@keyframes rotate {
100% {
transform: rotate(360deg);
}
}
.logo-color{
color: #50FA7B;
}
.text-color {
color: #e0e0e0;
}
</style>
<script>
setTimeout(() => {
window.location.href = "profile.html";
}, 3000); // 3 Sekunden Verzögerung
</script>
</head>
<body>
<h1><span class="text-color">Fridge</span><span class="logo-color">Sort</span></h1>
<p class="text-color">Willkommen! Du wirst weitergeleitet ...</p>
<div class="loader"></div>
</body>
</html>