-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (83 loc) · 4.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Music Player</title>
<link rel="stylesheet" href="./style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/f8aef0b1b9.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- This is your heading -->
<header class="heading">
<section id="toggle" class="form-switch btntoggle">
<input id="toggleswitch" class="form-check-input" style="width: 4%; height: 21%;" type="checkbox" role="switch" id="flexSwitchCheckChecked">
<label id="toggleswitchLbl" class="form-check-label" for="flexSwitchCheckChecked">Dark</label>
</section>
<h2>Music Player</h2>
</header>
<main class="container-fluid cont">
<!-- ============================All Song Section =============================-->
<div class="row">
<section id="all-songs" class="col m-2 all-songs">
<label>Filter By Genre: </label>
<div class="btn-group songType">
<button type="button" class="btn dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
All Songs
</button>
<ul class="dropdown-menu">
<li><p class="dropdown-item type">Hip Hop</p></li>
<li><p class="dropdown-item type">POP</p></li>
<li><p class="dropdown-item type">Romantic</p></li>
<li><p class="dropdown-item type">Motivational Song</p></li>
</ul>
</div>
<div class="songList">
<h4>All Songs</h4>
</div>
</section>
<!-- ============================ Song Card Section =============================-->
<section id="songCard" class="col m-2 songCard">
<div class="songDetails">
<div class="imgDiv">
<img id="album" src="" alt="" />
</div>
<div class="otherDet"></div>
<!-- <p>Dummy</p> -->
</div>
<audio id="player" controls type="audio/mp3"></audio>
<div class="switchBtn">
<i id="backWard" class="fa-solid fa-left-long fa-2xl" style="color: #08729b;"></i>
<i id="forWard" class="fa-solid fa-right-long fa-2xl" style="color: #08729b;"></i>
</div>
<div class="addToList">
<button id="btnAddList" class="plsong" type="button">Add To Playlist</button>
</div>
</section>
<section id="playlist" class="col">
<div class="row ms-0 searchList">
<input type="text" class="txtCreateList h-50 align-items-left" id="txtCreateList">
<button id="btnCreateList" class="btnCreateList w-25" type="button">Create List</button>
</div>
<section class="playlists">
<div id="currentList" class="playlistSongs">
<h4>Current Playlist</h4>
<hr />
</div>
<div id="listOfPl" class="listOfPl">
<h4>All Playlist</h4>
<hr />
</div>
</section>
</section>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>