-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdepoimentos.html
More file actions
39 lines (39 loc) · 1.15 KB
/
depoimentos.html
File metadata and controls
39 lines (39 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title>Depoimentos - Fazendinha Feliz</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Fazendinha Feliz - CEMAG</h1>
<nav>
<ul>
<li><a href="home.html">Página Principal</a></li>
<li><a href="agendarvisita.html">Agendar Visita</a></li>
<li><a href="depoimentos.html">Depoimentos</a></li>
</ul>
</nav>
</header>
<main>
<h2>Depoimentos</h2>
<section class="depoimento">
<img src="depoimento1.jpg" alt="Depoimento 1">
<p>"texto1"</p>
<cite>João Silva</cite>
</section>
<section class="depoimento">
<img src="depoimento2.jpg" alt="Depoimento 2">
<p>"texto2"</p>
<cite>Maria Santos</cite>
</section>
</main>
<footer>
<p>CEMAG - C. E. Manoel Antonio Gomes - EFM</p>
<p>Rua José Soltovski, 633, Reserva - PR, 84320-000</p>
<p>Telefone: (42) 3276-1274</p>
</footer>
</body>
</html>