-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.html
49 lines (47 loc) · 994 Bytes
/
dev.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
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Under Development</title>
<style>
body, html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background: #f0f0f0;
color: #333;
}
.container {
text-align: center;
padding: 20px;
max-width: 600px;
background-color: white;
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
border-radius: 8px;
}
h1 {
font-size: 2.5rem;
}
p {
font-size: 1.2rem;
color: #666;
}
.notice {
color: #607D8B;
margin: 20px 0;
font-size: 1.4rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Page Under Development</h1>
<p>We're working hard to bring you a great experience.</p>
<div class="notice">Please check back soon!</div>
</div>
</body>
</html>