-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.4 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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LoFi Square</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<div class="container">
<img src="./logo.png" alt="Logo" class="logo" />
<div class="controls">
<i id="prev" class="fas fa-backward control-icon"></i>
<i id="play" class="fas fa-play control-icon"></i>
<i id="next" class="fas fa-forward control-icon"></i>
</div>
<div class="current-track">
<span id="track-name"></span>
</div>
</div>
<div class="category-selector">
<select id="category-select">
<option value="Ambientes">Ambientes</option>
<option value="Jazz">Jazz</option>
<option value="Eletronica">Eletronica</option>
</select>
</div>
<div class="volume-controls">
<i id="volume-down" class="fas fa-minus volume-icon"></i>
<input
type="range"
id="volume"
min="0"
max="1"
step="0.01"
value="0.5"
class="volume-slider"
/>
<i id="volume-up" class="fas fa-plus volume-icon"></i>
</div>
<script src="renderer.js"></script>
</body>
</html>