-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (90 loc) · 2.75 KB
/
index.html
File metadata and controls
93 lines (90 loc) · 2.75 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
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
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MAHAKAL MUSIC</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="images/logo.jpg" type="image/x-icon" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<script
src="https://kit.fontawesome.com/9d38bf67e1.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="loading">
<svg width="64px" height="48px">
<polyline
points="0.157 23.954, 14 23.954, 21.843 48, 43 0, 50 24, 64 24"
id="back"
></polyline>
<polyline
points="0.157 23.954, 14 23.954, 21.843 48, 43 0, 50 24, 64 24"
id="front"
></polyline>
</svg>
</div>
<div id="restriction-message">
<p id="message-text"></p>
</div>
<div class="wrapper">
<div class="top-bar">
<a href="https://www.youtube.com/@Mahakal.musicc" target="_blank"
><i class="fa-brands fa-youtube"></i
></a>
<span>Now Playing</span>
<a
href="https://instagram.com/_.riq.de3?igsh=bm03ajhkajFtcG43"
target="_blank"
><i class="fa-brands fa-instagram"></i
></a>
</div>
<div class="img-area">
<img src="" alt="" />
</div>
<div class="song-details">
<p class="name"></p>
<p class="artist"></p>
</div>
<div class="progress-area">
<div class="progress-bar">
<audio id="main-audio" src=""></audio>
</div>
<div class="song-timer">
<span class="current-time">0:00</span>
<span class="max-duration">0:00</span>
</div>
</div>
<div class="controls">
<i id="repeat-plist" class="material-icons" title="Playlist looped"
>repeat</i
>
<i id="prev" class="material-icons">skip_previous</i>
<div class="play-pause">
<i class="material-icons play">play_arrow</i>
</div>
<i id="next" class="material-icons">skip_next</i>
<i id="more-music" class="material-icons">queue_music</i>
</div>
<div class="music-list">
<div class="header">
<div class="row">
<i class="list material-icons">queue_music</i>
<span>Music list</span>
</div>
<i id="close" class="material-icons">close</i>
</div>
<ul>
<!-- here li list are coming from js -->
</ul>
</div>
</div>
<script src="js/music-list.js"></script>
<script src="js/app.js"></script>
<script src="js/disaKey.js"></script>
</body>
</html>