IPFROMMINECRAFT / index.html
kuoramwoyo's picture
Update index.html
7878731 verified
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alteração de Domínio</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #2d3436;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
background-color: #34495e;
padding: 40px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
width: 80%;
max-width: 500px;
}
h1 {
font-size: 30px;
margin-bottom: 20px;
font-weight: bold;
color: #ffffff;
}
p {
font-size: 18px;
margin-bottom: 30px;
color: #ecf0f1;
}
.redirect-btn {
display: inline-block;
background-color: #00BFAE;
color: white;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-size: 18px;
font-weight: bold;
transition: background-color 0.3s ease;
margin-bottom: 20px;
}
.redirect-btn:hover {
background-color: #1abc9c;
}
.discord-btn {
display: inline-block;
background-color: #7289da;
color: white;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-size: 18px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.discord-btn:hover {
background-color: #6a7fb7;
}
footer {
margin-top: 20px;
font-size: 16px;
color: #bdc3c7;
}
</style>
</head>
<body>
<div class="container">
<h1>O Domínio do Site Mudou</h1>
<p>O nosso site foi movido para um novo domínio. Para continuar acessando, clique no botão abaixo:</p>
<a href="https://minecraft-status-ip.vercel.app/" class="redirect-btn" target="_blank" rel="noopener noreferrer">Ir Para o Novo Domínio</a>
<p>Se você tiver algum problema, entre em contato conosco.</p>
<a href="https://discord.gg/AGDmFu4CDG" class="discord-btn" target="_blank" rel="noopener noreferrer">Entrar no Discord</a>
</div>
</body>
</html>