forked from Vana-dot/Spotify_bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (85 loc) · 3.59 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
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify Clone</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="icon" href="./assets/icons/spotify.png">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<body class="container-fluid">
<div id="preload" class="preload"></div>
<div class="row">
<!-- Menu lateral esquerdo -->
<aside class="col-lg-2 menu-lateral p-3 bg-dark">
<nav>
<ul class="list-unstyled text-light p-3">
<li class="mb-3"><img src="./assets/icons/menu1.png" alt="menu"></li>
<li class="mb-3"><img class="pe-2" src="./assets/icons/casa.png" alt="casa"> Início</li>
<li class="mb-3"><img class="pe-2" src="./assets/icons/nave.png" alt="Nave"> Navegar</li>
<li class="mb-3"><img class="pe-2" src="./assets/icons/radi.png" alt="Som"> Rádio</li>
</ul>
<!-- Resto do menu lateral esquerdo -->
</nav>
</aside>
<!-- Centro -->
<div class="col-lg-8 principal pb-5 p-3 ">
<nav class="nav justify-content-between">
<span>
<!-- Ícones e campo de busca -->
</span>
<span>
<!-- Ícones e nome de usuário -->
</span>
</nav>
<h1 class="mt-5 pt-5 text-white">Artistas</h1>
<div class="border-end-0 border-start-0 border border-white">
<button class="filtro mt-3 text-black border-0">Filtrar</button>
<div class="mt-5 mb-2 pt-5 text-white">
<label class="fw-bold" for="">Classificado por</label>
<select class="w-25 border-0 text-black" name="" id="">
<option value="">Nome</option>
<option value="estilo">Gênero</option>
<option value="letra">Letra</option>
</select>
</div>
</div>
<div class="d-flex justify-content-around mt-5 mb-5 pb-5">
<span>
<img src="./assets/imagens/foto1.png" class="artist-profile" alt="">
<p class="text-white text-center">Justin bieber</p>
</span>
<span>
<img src="./assets/imagens/foto2.png" class="artist-profile" alt="">
<p class="text-white text-center">Rádio Company</p>
</span>
<span>
<img src="./assets/imagens/foto3.jpg" class="artist-profile" alt="">
<p class="text-white text-center">Metalica </p>
</span>
<span>
<img src="./assets/imagens/foto4.png" class="artist-profile" alt="">
<p class="text-white text-center">The Weeked</p>
</span>
</div>
<div class="text-light">
<h2 class="pb-4">Feito para Geovana</h2>
<div class="d-flex justify-content-around gap-3">
<!-- Iframes com músicas -->
</div>
</div>
</div>
<!-- Menu lateral direito -->
<aside class="col-lg-2 menu-direito p-3 bg-dark text-white">
<div class="encontrar-amigos fw-bold">
<p class="fs-5 text-center">Veja o que seus amigos estão tocando</p>
<button class="fw-bold mt-4 text-black border border-light rounded-pill">ENCONTRAR AMIGOS</button>
</div>
</aside>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./assets/javascrpt/script.js"></script>
</body>
</html>