Files
mwitnessing/content/maintennce.html
Dobromir Popov 27e1cded34 maintenance page
2024-05-01 15:29:38 +03:00

34 lines
864 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Maintenance</title>
<style>
body {
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4;
color: #333;
text-align: center;
}
h1 {
font-size: 24px;
}
p {
font-size: 16px;
}
</style>
</head>
<body>
<div>
<h1>Well be back soon!</h1>
<p>Sorry for the inconvenience but were performing some maintenance at the moment. We'll be back up shortly!</p>
<p>&mdash; The Team</p>
</div>
</body>
</html>