59 lines
1.8 KiB
HTML
59 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Shardwalker: The Mirror's Edge</title>
|
|
<link rel="stylesheet" href="shardwalkerMain.css">
|
|
<style>
|
|
.btn-roadmap {
|
|
display: inline-block;
|
|
background: #00bfff;
|
|
color: white;
|
|
padding: 10px 20px;
|
|
margin-left: 12px;
|
|
border-radius: 6px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
transition: background 0.3s ease;
|
|
}
|
|
|
|
.btn-roadmap:hover {
|
|
background: #0088cc;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar">
|
|
<a href="https://www.oblistudios.com">🏠 Home</a> |
|
|
<a href="https://www.oblistudios.com/shardwalker.html">⚔️ Shardwalker</a> |
|
|
<a href="https://www.oblistudios.com/roadmap.html">🔄️ Roadmap</a>
|
|
|
|
</nav>
|
|
|
|
|
|
<div class="container">
|
|
<header>
|
|
<h1>Shardwalker: The Mirror's Edge</h1>
|
|
<p>A tactical action-RPG exploring fractured realities.</p>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<h2>Game Features</h2>
|
|
<ul>
|
|
<li>Shard-switching combat mechanics</li>
|
|
<li>Deep narrative-driven adventure</li>
|
|
</ul>
|
|
<img src="img/mainmenu.png" alt="Shardwalker Main Menu" class="promo-image">
|
|
<br><br>
|
|
<button onclick="window.location.href='https://your-demo-download.com'">Download Demo</button>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© 2025 Obli.Studios. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|