-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path1
More file actions
42 lines (42 loc) · 930 Bytes
/
1
File metadata and controls
42 lines (42 loc) · 930 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>internet money since 2016 </title>
<style>
body {
margin: 0;
background-color: #282c34;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
color: white;
font-family: Arial, sans-serif;
flex-direction: column;
}
.loader {
width: 150px;
height: 150px;
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
h1 {
font-size: 2em;
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="loader"></div>
<h1>internet money since 2016</h1>
</body>
</html>