-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 799 Bytes
/
index.html
File metadata and controls
37 lines (35 loc) · 799 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Coming Soon</title>
<style>
body {
background-color: #f9f9f9;
color: #333;
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
flex-direction: column;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
}
p {
font-size: 1.25rem;
color: #666;
}
</style>
</head>
<body>
<h1>Coming Soon</h1>
<p>We're working hard to launch something great. Stay tuned!</p>
<p><a href="https://devopsvisions.github.io/blog/">Our Community Blog</a></p>
</body>
</html>