-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
36 lines (36 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bhavyhomes.tech - Under Maintenance</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
padding: 100px 20px;
margin: 0;
}
.container {
background: rgba(255,255,255,0.1);
border-radius: 10px;
padding: 40px;
max-width: 600px;
margin: 0 auto;
backdrop-filter: blur(10px);
}
h1 { font-size: 2.5em; margin-bottom: 20px; }
p { font-size: 1.2em; line-height: 1.6; }
</style>
</head>
<body>
<div class="container">
<h1>🏠 bhavyhomes.tech</h1>
<p>Our website is currently undergoing security maintenance and updates.</p>
<p>We'll be back online soon with improved security and performance.</p>
<p>Thank you for your patience.</p>
</div>
</body>
</html>