-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="Source/logo.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>BirdzMusix | Home</title>
</head>
<body>
<!------------------------------------------------------ Header ---------------------------------------------------->
<header>
<img src="Source/logo.png" alt="BirdzMusix" >
<h3>BirdzMusix</h3>
</header>
<!------------------------------------------------------ Main ----------------------------------------------------->
<section>
<div id="scroll">
</div>
<div id="cover_art">
</div>
<!-- <div id="main_img"></div> -->
</section>
<!------------------------------------------------------ Footer ---------------------------------------------------->
<footer>
<img src="Source/player.gif" id="playerImage" alt="">
<div class="btn">
<i class='bx bx-skip-previous'></i>
<i class='bx bx-play' id="play"></i>
<!-- <i class='bx bx-pause' ></i> -->
<i class='bx bx-skip-next'></i>
</div>
<p id="current_duration"></p>
<input type="range" name="" id="progressBar" min="0" max="100000" value="0">
<p id="total_duration"></p>
</footer>
<!------------------------------------------------------ Scripts --------------------------------------------------->
<script src="JavaScript/main.js"></script>
</body>
</html>