-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (86 loc) · 3.38 KB
/
index.html
File metadata and controls
91 lines (86 loc) · 3.38 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Melhores do EMO</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-light nav-top">
<div class="container-fluid nav-container">
<img src="Fotos/emo.png" alt="logo emo">
<h1>Melhores do EMO</h1>
<ul>
<li><a href="#">Melhores bandas</a></li>
<li><a href="#">Melhores músicas</a></li>
</ul>
<input type="text" id="termo-pesquisa" placeholder="Pesquisar..." oninput="pesquisar()">
</div>
</nav>
</header>
<main>
<section class="catalogo">
<h2>Melhores bandas</h2>
<div class="banda">
<img src="fotos/banda1.jpg" alt="My Chemical Romance">
<h3>My Chemical Romance</h3>
</div>
<div class="banda">
<img src="fotos/banda2.jpg" alt="BMTH">
<h3>BMTH</h3>
</div>
<div class="banda">
<img src="fotos/banda3.jpg" alt="Paramore">
<h3>Paramore</h3>
</div>
<div class="banda">
<img src="fotos/banda5.jpeg" alt="Panc! At The Disco">
<h3>Panc! At The Disco</h3>
</div>
<div class="banda">
<img src="fotos/banda6.jpg" alt="Simple Plan">
<h3>Simple Plan</h3>
</div>
<div class="banda">
<img src="fotos/banda7.jpeg" alt="Green Day">
<h3>Green Day</h3>
</div>
</section>
<section class="catalogo">
<h2>Melhores músicas</h2>
<div class="musica">
<img src="fotos/musica1.jpg" alt="Helena - My Chemical Romance">
<h3>Helena - My Chemical Romance</h3>
</div>
<div class="musica">
<img src="fotos/musica6.jpeg" alt="Can You Feel My Heart - BMTH">
<h3>Can You Feel My Heart - BMTH</h3>
</div>
<div class="musica">
<img src="fotos/musica2.jpg" alt="That’s What You Get - Paramore">
<h3>That’s What You Get - Paramore</h3>
</div>
<div class="musica">
<img src="fotos/musica3.jpeg" alt="The Ballad of Mona Lisa - Panc! At The Disco">
<h3>The Ballad of Mona Lisa - Panc! At The Disco</h3>
</div>
<div class="musica">
<img src="fotos/musica4.jpeg" alt="Welcome to My Life - Simple Plan">
<h3>Welcome to My Life - Simple Plan</h3>
</div>
<div class="musica">
<img src="fotos/musica5.jpeg" alt="American Idiot - Green Day">
<h3>American Idiot - Green Day</h3>
</div>
</section>
</main>
<footer>
<p>© 2024 Melhores do EMO. Todos os direitos reservados.</p>
</footer>
</body>
</html>