-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (54 loc) · 1.4 KB
/
index.html
File metadata and controls
65 lines (54 loc) · 1.4 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
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="MagerCode - Mandiri Course adalah dokumentasi dan arahan belajar mandiri (bukan kelas) untuk matematika, coding, dan software engineering.">
<meta name="robots" content="noindex,follow">
<link rel="canonical" href="https://magercode.github.io/src/index.html">
<link rel="shortcut icon" href="src/brand.svg" type="image/svg+xml">
<title>MagerCode - Mandiri Course</title>
<style>
body {
font-family: Arial, sans-serif;
display: grid;
place-items: center;
min-height: 100vh;
margin: 0;
background: #f8fafc;
color: #0f172a;
text-align: center;
}
.loader {
width: 48px;
height: 48px;
border: 5px solid #e2e8f0;
border-top: 5px solid #0ea5a4;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 20px auto;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
a {
color: #0ea5a4;
text-decoration: none;
}
</style>
<script>
setTimeout(() => {
window.location.href = "src/index.html";
}, 2000);
</script>
</head>
<body>
<div>
<h1>MagerCode - Mandiri Course</h1>
<div class="loader"></div>
<p>Sabar...</p>
<p>Jika tidak berpindah otomatis, buka <a href="src/index.html">src/index.html</a></p>
</div>
</body>
</html>