vision-arena / index.html
yuchenlin's picture
Update index.html
f8a4a94 verified
raw
history blame
813 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Under Maintenance</title>
<style>
body {
text-align: center;
padding: 150px;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
p {
color: #666;
font-size: 20px;
}
.notice {
color: #888;
font-size: 18px;
}
</style>
</head>
<body>
<h1>We'll be back soon!</h1>
<p>Sorry for the inconvenience but we're performing some maintenance at the moment. We'll be back online shortly!</p>
<p class="notice">— The Team</p>
</body>
</html>