File: /home/ohirex/web/ohirex.com/public_html/white/index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
color: #333;
}
.container {
text-align: center;
max-width: 600px;
padding: 20px;
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-size: 1em;
}
.btn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Our Community</h1>
<p>Join us to explore exciting opportunities and connect with like-minded individuals.</p>
<a href="https://whatsapp.com/channel/0029Vb9vULQ9WtCBlqw1zC0" class="btn">Learn More</a>
</div>
</body>
</html>