-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (78 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Amplify-Your Music</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<nav>
<ul>
<li class="brand mob-brand">
<img src="music.png" alt="Amplify" />Amplify
</li>
<li class="tab mob-tab">Home</li>
<li class="tab mob-tab">About</li>
<li class="tab mob-tab">Contact</li>
<div class="dropdown mob-bar">
<button onclick="myFunction()" class="dropbtn">
<i class="fa-solid fa-bars"></i>
</button>
<div id="myDropdown" class="dropdown-content">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
</ul>
</nav>
<div class="container hide">
<div class="songList">
<h1>Best Of NCS-NO Copyright Sounds</h1>
<div class="songItemcontainer" id="songItemContainer">
<!-- Dynamiccaly Creating bars for song details -->
</div>
</div>
</div>
<div class="bottom">
<div>
<input
type="range"
name="range"
id="myProgressBar"
value="0"
min="0"
max="100"
/>
<span id="myProgressTime">00:00</span>
</div>
<div class="icons">
<!-- fontawesome icons -->
<i class="fa-solid fa-3x fa-backward-step" id="previous"></i>
<i class="fa-regular fa-3x fa-circle-play" id="masterPlay"></i>
<i class="fa-solid fa-3x fa-forward-step" id="next"></i>
</div>
<div class="songInfo">
<img src="5uwq.gif" alt="" id="gif" width="72px" /><span
id="masterSongName"
></span>
</div>
</div>
<script
src="https://kit.fontawesome.com/a94f28fbc0.js"
crossorigin="anonymous"
></script>
<script src="toggle.js"></script>
<script type="module" src="script.js"></script>
<script type="module" src="songItem.js"></script>
<script src="preload.js"></script>
</body>
</html>