-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (47 loc) · 1.79 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
<!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">
<title>Ultropico Solar</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body background="imagens/bg.jpg">
<main>
<div class="logo">
<img src="imagens/ultropicoSolar.png" alt="Logo principal
da banda Ultropico Solar, uma flor" width="250px">
</div>
<h1 class="nomeBanda">Ultropico Solar</h1>
<h2 class="headline">A melhor banda do Brasil</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit beatae vitae soluta minus doloribus aut a at deleniti cupiditate enim ea eum voluptate fuga, possimus atque deserunt suscipit, libero incidunt! Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis quas excepturi adipisci iusto earum dolore deserunt reiciendis tenetur aspernatur! Rem fuga a sequi. Explicabo voluptas ad quasi, inventore neque illum.</p>
<br>
<hr>
<br>
<div class="shows">
<h2>Shows</h2>
<table>
<thead>
<tr>
<th>Cidade</th>
<th>Datas</th>
</tr>
</thead>
<tbody>
<td>São Paulo</td>
<td>01/10/2022</td>
</tbody>
<tbody>
<td>Rio de Janeiro</td>
<td>03/10/2022</td>
</tbody>
<tbody>
<td>Minas Gerais</td>
<td>05/10/2022</td>
</tbody>
</table>
</div>
</main>
</body>
</html>