-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (93 loc) · 3.34 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
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
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plantei</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">
<!-- home section -->
<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>
<!-- selling section -->
<section class="selling home">
<div class="info">
<h2 class="title">Instruções</h2>
<p class="instructions">Digite o nome da planta, parte da
descrição ou
categoria que você deseja
pesquisar. Você pode usar palavras-chave como "flor", "suculenta" ou "ornamentais".</p>
</div>
<div class="search">
<input type="text" class="form_group" placeholder="Digite a sua pesquisa ...">
<button onclick="pesquisar()" class="btn">Pesquisar</button>
<button onclick="mostrarTodos()" class="btn">Visualizar todas</button>
</div>
<div class="title">
<img src="./assets/title-border1.svg" alt="">
<h2>
Meus Registros
</h2>
<img src="./assets/title-border2.svg" alt="">
</div>
<div class="plants">
</div>
</div>
</div>
</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="./data.js"></script>
<script src="./app.js"></script>
</body>
</html>