-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39e8093
commit b0c13b8
Showing
1 changed file
with
24 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,36 @@ | ||
<!-- index.html --> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Antara Music - Home</title> | ||
|
||
<!-- Add the link to the Tailwind CSS stylesheet --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | ||
|
||
<!-- Include your custom stylesheet --> | ||
<title>Antara - Top 10 Songs</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
|
||
<!-- Add Howler.js library --> | ||
<script src="https://unpkg.com/howler"></script> | ||
|
||
<script src="script.js" defer></script> | ||
</head> | ||
|
||
<body class="bg-gray-100"> | ||
|
||
<!-- Navigation Bar --> | ||
<nav class="bg-blue-500 p-4 text-white flex justify-between items-center"> | ||
<div class="flex items-center space-x-4"> | ||
|
||
<img src="assets/logo.png" alt="Antara Logo" class="w-8 h-8"> | ||
<h1 class="text-lg font-bold">Antara Music</h1> | ||
</div> | ||
|
||
<!-- Search Icon --> | ||
<a href="search/index.html" class="text-xl"> | ||
<i class="bi bi-search"></i> | ||
</a> | ||
|
||
<!-- Library Icon --> | ||
<a href="lib/index.html" class="text-xl"> | ||
<i class="bi bi-book"></i> | ||
</a> | ||
</nav> | ||
|
||
|
||
<main class="p-4"> | ||
<h2 class="text-2xl font-bold mb-4">Top 10 Antara Picks</h2> | ||
|
||
|
||
<ul id="songList" class="list-disc pl-4"> | ||
|
||
</ul> | ||
|
||
<!-- Music Player Section --> | ||
<div class="mt-4"> | ||
<p id="currentSong">Now Playing: </p> | ||
<button id="playPauseBtn" onclick="togglePlayPause()">Play</button> | ||
<button onclick="playNext()">Next</button> | ||
<button onclick="playPrevious()">Previous</button> | ||
<body> | ||
<header class="advanced-toolbar"> | ||
<div class="brand"> | ||
<img src="https://raw.githubusercontent.com/ProTecGames/Antara-Web/main/assets/logo.png" alt="Antara Logo"> | ||
<span>Antara</span> | ||
</div> | ||
<nav> | ||
<a href="#">Home</a> | ||
<a href="#">About</a> | ||
<a href="#">Contact</a> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<section class="blur-toolbar"> | ||
<h1>Top 10 Songs</h1> | ||
</section> | ||
|
||
<section id="songList" class="song-list"> | ||
<!-- Song details will be dynamically added here --> | ||
</section> | ||
</main> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
|
||
</html> |