hdonweb.com Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Our website is under construction. We'll be back soon with a brand new look!">
<meta name="robots" content="index, follow">
<link rel='canonical' href='https://www.hdonweb.com/ads.txt'> <title>Coming Soon - HDonWeb</title>
<style>
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(-45deg, #2193b0, #6dd5ed);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
padding: 20px;
}
.container {
text-align: center;
max-width: 800px;
padding: 60px 40px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
border-radius: 30px;
box-shadow:
0 8px 32px 0 rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(255, 255, 255, 0.1);
animation: fadeInUp 1s ease-out;
position: relative;
overflow: hidden;
}
.container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
backdrop-filter: blur(10px);
z-index: -1;
}
.logo {
font-size: 2.5em;
font-weight: 800;
margin-bottom: 30px;
text-transform: uppercase;
letter-spacing: 4px;
color: rgba(255, 255, 255, 0.95);
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 3.5em;
margin-bottom: 20px;
font-weight: 700;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
p {
font-size: 1.2em;
line-height: 1.6;
margin-bottom: 30px;
color: rgba(255, 255, 255, 0.9);
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.dots {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 40px;
}
.dot {
width: 10px;
height: 10px;
background: rgba(255, 255, 255, 0.8);
border-radius: 50%;
animation: pulse 1.5s ease-in-out infinite;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
0% { transform: scale(0.8); opacity: 0.5; }
50% { transform: scale(1.2); opacity: 1; }
100% { transform: scale(0.8); opacity: 0.5; }
}
@media (max-width: 768px) {
.container {
padding: 40px 20px;
margin: 20px;
}
h1 { font-size: 2.5em; }
.logo { font-size: 2em; }
}
@media (max-width: 480px) {
.container { padding: 30px 15px; }
h1 { font-size: 2em; }
p { font-size: 1.1em; }
.logo { font-size: 1.5em; }
}
</style>
</head>
<body>
<div class="container">
<div class="logo">HDonWeb</div>
<h1>Coming Soon</h1>
<p>We're crafting something amazing! Our new website is under construction, bringing you an enhanced digital experience.</p>
<div class="dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
</body>
</html>