-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.38 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
<!DOCTYPE html>
<head>
<title>MusicPlayer-JS</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@500&family=Indie+Flower&display=swap" rel="stylesheet">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="main-container">
<div class="music-container">
<h2 id="title">Comethru</h2>
<h3 id="artist">Jeremy Zucker</h3>
<div class="img-container">
<img src="Images/img00.jpg" alt="">
</div>
<audio src="Music/track00.mp3"></audio>
<div class="music-controls">
<i class="fas fa-backward" id="prev" title="Previous"></i>
<i class="fas fa-play main-btn" id="play" title="Play"></i>
<i class="fas fa-forward" id="next" tile="Next"></i>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>