turkiyeninnabzi.com Ads.txt file
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404</title>
<style>
html,
body {
width: 100vw;
height: 100vh;
font-family: "Roboto Mono", monospace;
font-size: 16px;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
display: flex;
justify-content: center;
align-items: center;
background-color: #000;
color: #FFF;
animation: bg 4s infinite;
}
div {
text-align: center;
}
a {
color: #FFF;
text-decoration: none;
}
@keyframes bg {
0% {
background-color: #000;
}
50% {
background-color: #F00;
}
100% {
background-color: #000;
}
}
</style>
</head>
<body>
<div>
<h1>Aradığınız Sayfa Bulunamadı!</h1>
<a href="/">Anasayfa</a>
</div>
<script>
setTimeout(function() {
window.location.href = '/';
}, 2000);
</script>
</body>
</html>