111 lines
4.2 KiB
HTML
111 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="et">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>EstCraft</title>
|
|
<link rel="icon" type="image/x-icon" href="logo.ico">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar">
|
|
<div class="nav-container">
|
|
<a href="#" class="logo">
|
|
<img src="logo.png" alt="EstCraft Logo">
|
|
</a>
|
|
<ul class="nav-links">
|
|
<li><a href="#liitu">Liitu</a></li>
|
|
<li><a href="#vote">Vote</a></li>
|
|
<li><a href="#discord">Discord</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="landing-section">
|
|
<div class="bg-overlay"></div>
|
|
<div class="landing-content">
|
|
<h1>EstCraft</h1>
|
|
<p>Liitu meie Minecraft serveriga ja alusta seiklust!</p>
|
|
<a href="#liitu" class="btn">Liitu</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="second-section section">
|
|
<h2>Mängumoodid</h2>
|
|
<div class="gamemode-container">
|
|
<div class="gamemode-card">
|
|
<img src="survival.png" alt="Survival">
|
|
<h3>Survival</h3>
|
|
<p>Klassikaline Minecrafti ellujäämisrežiim koos lisadega!</p>
|
|
</div>
|
|
<div class="gamemode-card">
|
|
<img src="pvp.png" alt="PVP">
|
|
<h3>PVP</h3>
|
|
<p>Võitle teiste mängijatega ja tõesta, et oled parim!</p>
|
|
</div>
|
|
<div class="gamemode-card">
|
|
<img src="oneblock.png" alt="OneBlock">
|
|
<h3>OneBlock</h3>
|
|
<p>Alusta ühe plokiga ja laienda oma saart!</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="vote" class="second-section section">
|
|
<h2>Vote</h2>
|
|
<h3>Votei, et saada lahedaid asju nagu relvad, toit ja muu. Sellega toetad ka meie serverit!</h3>
|
|
<div class="gamemode-container">
|
|
<div class="gamemode-card" onclick="window.open('https://minecraft-mp.com/server/339252/vote', '_blank');">
|
|
<img src="vote.png" alt="minecraft-mp">
|
|
<h3>Vote 1</h3>
|
|
<p>Minecraft-MP</p>
|
|
</div>
|
|
<div class="gamemode-card" onclick="window.open('https://minecraft-server-list.com/server/509223/vote', '_blank');">
|
|
<img src="vote.png" alt="minecraft-server-list">
|
|
<h3>Vote 2</h3>
|
|
<p>Minecraft-Server-List</p>
|
|
</div>
|
|
<div class="gamemode-card" onclick="window.open('https://minecraft-serverlist.com/server/2055', '_blank');">
|
|
<img src="vote.png" alt="minecraft-serverlist">
|
|
<h3>Vote 3</h3>
|
|
<p>Minecraft-Serverlist</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="liitu" class="third-section section">
|
|
<div class="server-info">
|
|
<h2>Liitu Serveriga</h2>
|
|
<p><strong>IP:</strong> mc.estcraft.eu</p>
|
|
<p>Võid liituda nii javas, bedrockis, isegi kui konto on cracked.</p>
|
|
<p><strong>Bedrock Port:</strong> 19132</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="discord" class="third-section section">
|
|
<div class="discord-info">
|
|
<h2>Liitu ka meie Discordiga!</h2>
|
|
<p>Siis saad kiireid teavitusi kui serveris midagi toimub, või tuleb uuendus!</p>
|
|
<a href="https://discord.gg/dZcxAHWbn7" class="btn">Liitu discordiga</a>
|
|
<iframe src="https://discord.com/widget?id=1037049461291110440&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="footer">
|
|
<p>© <script>document.write(new Date().getFullYear());</script> EstCraft. Kõik õigused kaitstud.</p>
|
|
<a href="https://tallinn.metsamarja.eu/EstCraft/estcraft-web">EstCraft WEB v1.0</a>
|
|
</footer>
|
|
|
|
|
|
|
|
<script>
|
|
document.querySelector('.btn').addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
document.querySelector('#liitu').scrollIntoView({ behavior: 'smooth' });
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|