-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.85 KB
/
Copy pathindex.html
File metadata and controls
54 lines (54 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="./lib/Frontend/Functions/checkIE.js"></script>
<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="stylesheet" href="./lib/assets/style.css" />
<script src="https://kit.fontawesome.com/4ecf49da3e.js" crossorigin="anonymous"></script>
<link rel="icon" href="./lib/assets/img/icons/vinyl.svg" />
<title>Flomm player</title>
</head>
<body>
<div class="wrapper">
<div class="upper">
<div class="left block">
<div class="upper-left">
<div class="logo">
<img src="./lib/assets/img/icons/vinyl.svg" alt="" />
</div>
<div class="toggle-holder">
<label class="switch-style">
<input type="checkbox" />
<span class="slider round"></span>
</label>
</div>
<div class="playlist">
<h3>Playlists</h3>
<button class="add-tl"><i class="fas fa-plus"></i></button>
</div>
<div class="cover"></div>
</div>
<ul></ul>
</div>
<div class="right block">
<div class="heading">
<div class="title">
<h3></h3>
<span></span>
</div>
<div class="player-btn">
<button class="del-song"><i class="fas fa-times"></i></button>
<button class="add-song"><i class="fas fa-plus"></i></button>
<button class="add-fav"><i class="fas fa-star"></i></button>
</div>
</div>
<ul></ul>
</div>
</div>
<div class="player-holder"></div>
</div>
<script type="module" src="./lib/app.js"></script>
</body>
</html>