-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (56 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Produtos</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="produtos.css">
</head>
<body>
<header>
<div class="caixa">
<h1> <img src="colegio.png" width="30%"> </h1>
<nav>
<ul>
<li> <a href="pessoas.html"> Pessoas</a> </li>
<li> <a href="eventos.html"> Eventos </a> </li>
<li> <a href="biblioteca.html"> Biblioteca </a></li>
<li> <a href="contatos"> Contatos </a> </li>
</ul>
</nav>
</header>
<main>
<ul class="produtos">
<li>
<h2> Pesssoas </h2>
<img src="pessoas.jpeg" width="80%" style="padding: 30px;">
<p class="detalhes0"> Todos que aqui trabalhamos. </p>
<p class="detalhes1"> Somos todos JK. </p>
</li>
<li>
<h2> Eventos </h2>
<img src="evento.jpg" width="80%" style="padding: 47px;margin-left: -20px;">
<p class="detalhes0"> Todas atividades que fazemos. </p>
<p class="detalhes1"> Atividades extra curricular. </p>
</li>
<li>
<h2> Biblioteca </h2>
<img src="biblioteca.jpeg" width="80%" style="padding: 11px;">
<p class="detalhes0"> Tudo o que temos para aprender e como apreender. </p>
<p class="detalhes1"> Aqui mora a sabedoria. </p>
</li>
<li>
<h2> Contato </h2>
<img src="contato.jpg" width="80%"style="padding: 66px; margin-left: -30px;">
<p class="detalhes0"> Para falar conosco. </p>
<p class="detalhes1"> Sempre que precisar. </p>
</li>
</ul>
</main>
<footer>
<img src="colegio.png" width="10%">
<p class="copyright"> © Copyright Colégio JK - 2022 </p>
</footer>
</body>
</html>