editor LogoutAccount PreferencesDid you know..."With all of you boys going broke and the tax receipts crashing, where do you expect us to get the money to hand you a subsidy?" Clenn Weatherby, Washington D.C. ? <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Nunito', sans-serif;
background-color: #fff;
color: #26272C;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
overflow: hidden;
}
.container {
text-align: center;
z-index: 1;
}
.radio-icon {
font-size: 100px;
color: #22C399;
margin-bottom: 20px;
animation: wave 2s infinite;
}
@keyframes wave {
0% {
text-shadow: 0 0 0 rgba(34, 195, 153, 0.4);
}
50% {
text-shadow: 0 0 80px rgba(34, 195, 153, 0.8);
}
100% {
text-shadow: 0 0 0 rgba(34, 195, 153, 0.4);
}
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #22C399;
color: #fff;
text-decoration: none;
margin-top: 20px;
border-radius: 5px;
}
.background-404 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 400px;
font-weight: bold;
color: rgba(38, 39, 44, 0.06);
z-index: 0;
}
</style>
</head>
<body>
<div class="container">
<i class="fas fa-broadcast-tower radio-icon"></i>
<h1>Oops! Vous avez atteint une zone inconnue...</h1>
<a class="button" href="https://fr.radioking.com">Visiter Radioking</a>
</div>
<div class="background-404">404</div>
<script>
var language = navigator.language || navigator.userLanguage;
if (language.includes('fr')) {
document.querySelector('title').innerText = "404 - page introuvable";
document.querySelector('h1').innerText = "Le site demandé est en cours de création ou a été supprimé";
document.querySelector('.button').href = "https://fr.radioking.com";
document.querySelector('.button').innerText = "Visiter RadioKing";
} else {
document.querySelector('title').innerText = "404 - page not";
document.querySelector('h1').innerText = "The requested site is being created or has been deleted.";
document.querySelector('.button').href = "https://www.radioking.com";
document.querySelector('.button').innerText = "Visit RadioKing";
}
</script>
</body>
</html>