-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (42 loc) · 1.03 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SAAZ FRAMER</title>
<meta http-equiv="refresh" content="2;url=home.html">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #8ecae6;
color: #023047;
font-family: 'Poppins', sans-serif;
text-align: center;
}
.container {
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
}
h1 {
margin: 0;
font-size: 24px;
}
p {
margin-top: 10px;
font-size: 16px;
}
</style>
</head>
<body>
<div class="container">
<h1>SAAZ FRAMER</h1>
<p>Please wait a moment...</p>
</div>
</body>
</html>