-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html lang="pt_br">
<!-- HTML:
Hypertext
hiper texto (link)
Markup
Marcação de texto
Language
Linguagem de marcação
-->
<head>
<meta charset="UTF-8"> <!---- <aceita caracter especiais> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- para confg o site responsivo-->
<title>Ecoleta</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Ubuntu:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="/styles/home.css"> <!-- refatoração -->
<link rel="stylesheet" href="/styles/responsive.css"> <!-- refatoração: importando o responsive -->
</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 class="red">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</a>
<!-- <button>Pesquisar pontos de coleta</button> -->
</main>
</div>
</div>
</body>
</html>