-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
102 lines (87 loc) · 2.86 KB
/
about.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
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
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plantei | Sobre</title>
<!-- favicon link -->
<link rel="shortcut icon" href="./assets/logo.svg" type="image/svg">
<!-- link to google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet">
<!-- style sheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="planto">
<section>
<header>
<div class="logo">
<img src="./assets/logo.svg" alt="">
<h4>Plantei</h4>
</div>
<ul class="nav_menu">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">Sobre</a></li>
</ul>
<div class="nav_icon">
<button onclick="openMenu()">
<img src="./assets/menu.svg" class="menu" alt="">
</button>
</div>
</header>
</section>
<section class="selling home">
<h1 class="title">Sobre o Plantei</h1>
<p class="instructions">O Plantei é um guia completo para amantes de plantas. Aqui você encontrará tudo o que
precisa para cultivar
suas
plantas com sucesso, desde informações detalhadas sobre cada espécie até dicas de cuidados de jardinagem.
Nossa missão é criar uma comunidade online onde todos possam compartilhar seu amor pelas plantas e aprender
mais
sobre esse universo fascinante.
</p>
<br>
<h2 class="title">O que você encontra aqui?</h2>
<ul class="instructions">
<li>- Pesquisa de plantas completa</li>
<li>- Guias de cultivo detalhados</li>
</ul>
<br>
<h2 class="title">Quem somos nós?</h2>
<p class="instructions">Somos um grupo de apaixonados por plantas que decidiu criar este site para compartilhar
nosso conhecimento e
ajudar
outras pessoas a cultivarem seus próprios jardins.</p>
</section>
</div>
<footer>
<section class="footer">
<div class="footer_top">
<div class="footer_title">
<div class="footer_logo">
<img src="/assets/logo.svg" alt="">
<h3>Plantei</h3>
</div>
</div>
<ul>
<li>
<h2>Quick Link's</h2>
</li>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">Sobre</a></li>
</ul>
</div>
<div class="footer_bot">
<div class="social">
</div>
<p>
Plantei 2024 - Todos os direitos Reservados.
</p>
</div>
</section>
</footer>
<script src="./app.js"></script>
</body>