-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.27 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.27 KB
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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.1/css/all.css">
</head>
<body>
<div class="main_div">
<h1 style="font-size:55px;font-family: sans-serif;text-transform: uppercase;
letter-spacing: 0.2rem; word-spacing: 0.5rem;color:#171717; font-weight:500;
text-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.3);">Songs Collections</h1><i class="fas fa-headphones-alt" style="font-size:80px;"></i>
<div class="music_container">
<h2 id="title">Mehrama</h2>
<h3 id="artist">Singer : Arjit Singh</h3>
<div class="img_container">
<img src="Mehrama.jpg" alt="">
</div>
<audio src="Mehrama.mp3" controls="S"></audio>
<!-- controls -->
<div class="music-controls">
<i class="fas fa-backward" id="prev" title="Previous"></i>
<i class="fas fa-play main_button" id="play" title="Play"></i>
<i class="fas fa-forward" id="next" title="Next"></i>
</div>
</div>
</div>
<script src="first.js"></script>
</body>
</html>