-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain2write.html
46 lines (42 loc) · 1.29 KB
/
main2write.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
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>loading...</title>
<link rel="icon" type="image/x-icon" href="/Image_Source/favicon.ico">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f8f9fa;
font-family: 'Poppins', sans-serif;
}
.spinner-grow {
width: 5rem;
height: 5rem;
margin-bottom: 20px;
}
.message {
font-size: 1.5rem;
font-weight: 600;
}
</style>
</head>
<body>
<div class="spinner-grow" role="status">
<span class="sr-only">Loading...</span>
</div>
<div class="message">Setting up the Best Experience for you 🔨⚙️</div>
<script>
setTimeout(function() {
window.location.href = 'writingPage.html';
}, 2500);
</script>
</body>
</html>