-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (62 loc) · 2.59 KB
/
index.html
File metadata and controls
80 lines (62 loc) · 2.59 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
<!DOCTYPE html>
<html lang="pt">
<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>Turma L</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="cabeçalho">
<img class="cabeçalho-logo" src="Logo-formadores.png" alt="Logo do Formadores do Ação">
<ul class="cabeçalho-lista">
<li class="cabeçalho-itens">Formadores</li>
<li class="cabeçalho-itens">Cursistas</li>
</ul>
</header>
<section class="formadores">
<h1 class="formadores-título">Formadores em Ação</h1>
<p class="formadores-parágrafo">1ª Jornada</p>
<p class="formadores-parágrafo">2023</p>
</section>
<section class="galeria">
<h2 class="galeria-titulo">Galeria de Figurinhas</h2>
<div class="galeria-todos">
<div>
<h4 class="galeria-topo">Figura1</h4>
<img class="galeria-foto" src="Nivelamento1.jpg" alt="figurinha">
<legend class="legenda">Logo1</legend>
</div>
<div>
<h4 class="galeria-topo">Figura2</h4>
<img class="galeria-foto" src="Nivelamento2.jpg" alt="figurinha">
<legend class="legenda">Logo2</legend>
</div>
<div>
<h4 class="galeria-topo">Figura3</h4>
<img class="galeria-foto" src="Reunião 4 -1.PNG" alt="figurinha">
<legend class="legenda">Logo3</legend>
</div>
<div>
<h4 class="galeria-topo">Figura4</h4>
<img class="galeria-foto" src="Reunião 4 -2.PNG" alt="figurinha">
<legend class="legenda">Logo4</legend>
</div>
<div>
<h4 class="galeria-topo">Figura5</h4>
<img class="galeria-foto" src="Reunião 5 - 1.PNG" alt="figurinha">
<legend class="legenda">Logo5</legend>
</div>
<div>
<h4 class="galeria-topo">Figura6</h4>
<img class="galeria-foto" src="Reunião 5 - 2.PNG" alt="figurinha">
<legend class="legenda">Logo6</legend>
</div>
</div>
</section>
<footer class="rodape">
<p class="copyright"> ©Copyright Carolina da Silva Gonçalves - 2023</p>
</footer>
</body>
</html>