jack sparow

This commit is contained in:
root 2025-11-06 20:28:22 +00:00
parent 1c3bf6e7a1
commit e8d639f9ed
2 changed files with 307 additions and 0 deletions

58
index.html Executable file
View file

@ -0,0 +1,58 @@
<!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>