-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-results.html
73 lines (51 loc) · 1.88 KB
/
search-results.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resultado da Pesquisa</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/search-results.css">
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="/styles/responsive.css">
</head>
<body>
<div id="page-search-results">
<header>
<img src="/assets/logo.svg" alt="logomarca">
<a href="index.html">
<span></span>
Voltar para home
</a>
</header>
<main>
<h4>
<strong>2 pontos</strong> encontrados
</h4>
<div class="cards">
<div class="card">
<img src="https://images.unsplash.com/photo-1516992654410-9309d4587e94?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" alt="Colectoria">
<h1>Colectoria</h1>
<h3>Resíduos Eletronicos, Lâmpadas</h3>
<p>
Rio do Sul, Santa Catarina <br/>
Guilherme Gemballa, jardim América <br/>
Nº 260
</p>
</div>
<div class="card">
<img src="https://images.unsplash.com/photo-1528323273322-d81458248d40?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" alt="Paperside">
<h1>Papersider</h1>
<h3>Papéis e Papelão</h3>
<p>
Rio do Sul, Santa Catarina <br/>
Guilherme Gemballa, jardim América <br/>
Nº 260
</p>
</div>
</div>
</main>
</div>
<script src="/scripts/create-points.js"></script>
</body>
</html>