-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 1.85 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<link rel="shortcut icon" type="image/png" href="./src/assets/img/musical-note.png">
<link rel="stylesheet" href="./src/styles/globalStyles.css" />
<link rel="stylesheet" href="./src/styles/index.css" />
<script defer type="module" src="./src/scripts/theme.js"></script>
<script defer type="module" src="./src/scripts/productsData.js"></script>
<script defer type="module" src="./src/scripts/categoryButtons.js"></script>
<script defer type="module" src="./src/scripts/filter.js"></script>
<script defer type="module" src="./src/scripts/slider.js"></script>
<script defer type="module" src="./src/scripts/index.js"></script>
<title>open music</title>
</head>
<body>
<main class="main__container">
<header class="header__container">
<h1 class="header__title">open music</h1>
<i class="header__theme" id="theme"></i>
</header>
<div class="category__container">
<h2 class="category__title">Gênero Musical</h2>
<ul class="category__list" id="filterCategory"></ul>
</div>
<div class="set-price__container">
<div class="set-price__header">
<h2 class="set-price__title">Definir Preço</h2>
<p class="set-price__to" id="sliderPrice"></p>
</div>
<div class="slide__container">
<input class="set-price__slider" type="range" min="1" max="500" value="240" id="slider">
</div>
</div>
<div class="found__container">
<h3 class="found__title">Álbuns Encontrados</h3>
<div class="albuns__container" id="app">
</div>
</div>
</div>
</main>
</body>
</html>