-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (43 loc) · 1.29 KB
/
Copy pathindex.html
File metadata and controls
45 lines (43 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css">
<script>
const target = "https://vortisrd.github.io/chatrd/index.html"
window.location.replace(target);
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
width: 100vw;
height: 100vh;
overflow-wrap: break-word;
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: "DM Sans", sans-serif;
font-optical-sizing: auto;
height: 100%;
overflow: hidden;
background: #121212;
color: #FFF;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
</style>
</head>
<body>
<div><i class="fa-solid fa-arrow-rotate-right fa-spin"></i> Redirecting...</div>
</body>
</html>