User:Editingthingsforlife/vector-2022.js

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Madness Descent Wiki</title>
    <link href="style.css" rel="stylesheet" type="text/css" media="all">
    <link href="https://fonts.googleapis.com/css2?family=Special+Elite&family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
  </head>
  <body>
    <div class="container">
      <!-- Sidebar -->
      <nav class="sidebar">
        <div class="logo">
          <img src="/madness_descent_logo.png" alt="Madness Descent Logo">
        </div>
        <h2>Navigation</h2>
        <ul class="nav-links">
          <li><a href="/monsters.html">Monsters</a></li>
          <li><a href="#">Items</a></li>
          <li><a href="#">Lore</a></li>
          <li><a href="#">Credits</a></li>
        </ul>
        <h2>Community</h2>
        <ul class="community-links">
          <li><a href="https://discord.gg/GTBAKgCrez" target="_blank">Discord Server</a></li>
          <li><a href="#">Credits</a></li>
        </ul>
      </nav>

      <!-- Main Content -->
      <main class="main-content">
        <div class="header-bar">
          <div class="tabs">
            <a href="#" class="active">Main Page</a>
            <a href="#">Discussion</a>
            <a href="#">History</a>
          </div>
        </div>

        <div class="hero-section">
          <h1>Madness Descent Wiki</h1>
          <p>Welcome to the official Madness Descent Wiki!</p>
          <p>Madness Descent is an asymmetrical Roblox game inspired by Pillar Chase 2.</p>
        </div>

        <section class="navigation">
          <table>
            <thead>
              <tr>
                <th>Explore</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td><a href="/monsters.html" class="table-link">Monsters</a></td>
              </tr>
            </tbody>
          </table>
        </section>
      </main>
    </div>
  </body>
</html>