-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (53 loc) · 1.67 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ecoleta</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital&family=Ubuntu:ital,wght@1,700&:ital,wght@0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="/styles/home.css">
<link rel="stylesheet" href="/styles/modal.css">
<link rel="stylesheet" href="/styles/responsive.css">
</head>
<body>
<div id="page-home">
<div class="content">
<header>
<img src="/assets/logo.svg" alt="logomarca">
<a href="/create-point.html">
<span></span>
Cadastre um ponto de coleta
</a>
</header>
<main>
<h1>Seu marketplace de coleta de resíduos</h1>
<p>Ajudamos pessoas a encontrarem pontos de coleta de forma eficiente.</p>
<a href="#"><span></span><strong>Pesquisar pontos de coleta</strong></a>
</main>
</div>
</div>
<div id="modal" class="hide">
<div class="content">
<div class="header">
<h1>Pontos de Coleta</h1>
<a href="#">Fexar</a>
</div>
<form action="/search-results.html">
<label for="search">Cidade</label>
<div class="search field">
<input
type="text"
name="search"
placeholder="Pesquise por Cidade"
>
<button>
<img src="/assets/search.svg" alt="Buscar">
</button>
</div>
</form>
</div>
</div>
<script src="/scripts/index.js"></script>
</body>
</html>