moneymaker.ng Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MoneyMaker.ng - Be financially free</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
background-color: #f5f5f5;
overflow-x: hidden; /* Prevent horizontal overflow */
}
header {
background-color: #ffffff;
padding: 1rem;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #ff4444;
font-size: 2rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
margin: 0 20px; /* Added left and right margins */
background-color: #ffffff; /* Added white background */
border-radius: 12px; /* Rounded corners */
box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow */
max-width: 800px; /* Limit width for app-like feel */
width: calc(100% - 40px); /* Ensure it fits within the viewport */
margin: 20px auto; /* Center the content */
}
h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #333;
}
p {
font-size: 1.3rem;
color: #666;
margin-bottom: 1rem;
}
.wrench-icon {
width: 60px;
height: 60px;
color: #2196F3;
animation: spin 4s linear infinite;
}
footer {
text-align: center;
padding: 1rem;
font-size: 0.8rem;
color: #666;
background-color: #ffffff;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@media (max-width: 768px) {
h1 { font-size: 1.5rem; }
h2 { font-size: 1.8rem; }
p { font-size: 1rem; }
.content {
margin: 10px; /* Smaller margins on mobile */
padding: 1rem; /* Smaller padding on mobile */
width: calc(100% - 20px); /* Adjust width for mobile */
}
}
</style>
</head>
<body>
<header>
<h1>MoneyMaker.ng</h1>
</header>
<div class="content">
<h2>Version 2 Coming Soon</h2>
<p>MoneyMaker Version 2.0 is currently under development.</p>
<p>Kindly check back again or contact Support.</p>
<p> </p>
<svg class="wrench-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z"/>
</svg>
</div>
<footer>
<span>© <span id="year"></span> MoneyMaker.ng</span>
</footer>
<script>
// Automatically update year in footer
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>