58 lines
1.4 KiB
HTML
Executable file
58 lines
1.4 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>The Pirate Oasis</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&family=Pirata+One&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1 class="title">The Pirate Oasis</h1>
|
|
<nav class="navbar">
|
|
<a href="#">Trending</a>
|
|
<a href="#">Historical</a>
|
|
<a href="#">Statistics</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<section class="welcome">
|
|
<marquee behavior="scroll" direction="left">Welcome to The Pirate Oasis - Home of the Lost Torrents</marquee>
|
|
</section>
|
|
|
|
<section class="filters">
|
|
<div class="dropdown">
|
|
<button class="dropbtn">Category</button>
|
|
<div class="dropdown-content">
|
|
<a href="#">Action</a>
|
|
<a href="#">Documentary</a>
|
|
<a href="#">Software</a>
|
|
<a href="#">Music</a>
|
|
<a href="#">Movies</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="torrent-table">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Torrent Link</th>
|
|
<th>Last Updated</th>
|
|
<th>Active Peers</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Your torrent data will go here -->
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
|
|
<footer>
|
|
<p>© 2025 The Pirate Oasis. All rights reserved.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|