Spaces:
Running
Running
<html lang="pt-BR"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Meu Servidor Minecraft</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
text-align: center; | |
background-color: #282c34; | |
color: white; | |
padding: 20px; | |
} | |
.server-info { | |
background: #444; | |
padding: 20px; | |
border-radius: 10px; | |
display: inline-block; | |
margin-bottom: 20px; | |
} | |
.status { | |
font-size: 20px; | |
font-weight: bold; | |
} | |
.images { | |
display: flex; | |
justify-content: center; | |
gap: 20px; | |
margin-bottom: 20px; | |
} | |
.images img { | |
width: 200px; | |
height: auto; | |
border-radius: 10px; | |
} | |
.balloons { | |
display: flex; | |
justify-content: center; | |
gap: 20px; | |
} | |
.balloons a { | |
display: inline-block; | |
background: #9146FF; | |
color: white; | |
padding: 10px 20px; | |
border-radius: 10px; | |
text-decoration: none; | |
font-size: 18px; | |
font-weight: bold; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Bem-vindo ao Servidor de Minecraft (Original / Pirata)</h1> | |
<div class="images"> | |
<img src="https://i.imgur.com/zsmEYPR.png" alt="Imagem 1"> | |
<img src="https://i.imgur.com/SaNVNqS.jpeg" alt="Imagem 2"> | |
</div> | |
<div class="server-info"> | |
<p><strong>Nome:</strong> THE DWELLERS (JAVA)</p> | |
<p><strong>IP:</strong> THEDWELLERS_.aternos.me:24354</p> | |
<p class="status">Status: off...</p> | |
</div> | |
<div class="balloons"> | |
<a href="https://www.twitch.tv/gui1325" target="_blank">Canal da Twitch do gui1325 (Dono)</a> | |
<a href="https://www.twitch.tv/alatolouco" target="_blank">Canal da Twitch do alatolouco (adm)</a> | |
<a href="https://discord.gg/AGDmFu4CDG" target="_blank">Server do Discord de Suporte</a> | |
</div> | |
</body> | |
</html> | |