This repository was archived by the owner on Jan 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathongs.html
More file actions
69 lines (55 loc) · 2.28 KB
/
Copy pathongs.html
File metadata and controls
69 lines (55 loc) · 2.28 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<title>Localize Ongs | Support</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet-geosearch@3.1.0/dist/geosearch.css" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="https://unpkg.com/leaflet-geosearch@3.1.0/dist/bundle.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<link rel="icon" href="./public/images/logo-icon.png" />
<link rel="stylesheet" href="./public/css/main.css" />
<link rel="stylesheet" href="./public/css/animations.css" />
<link rel="stylesheet" href="./public/css/page-ongs.css" />
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<div id="page-ongs">
<aside class='animate-right'>
<header>
<a href="./index.html">
<img id="logo" src="./public/images/map-marker.png" alt="Support">
</a>
<h2> Escolha uma ong no mapa</h2>
<p>Muitas vidas podem ser mudadas por voce</p>
</header>
<div class="icons">
<a href="./contato.html">
<img src="./public/images/contact.png" alt="Entrar em contato">
</a>
<a href="./sobre.html">
<img src="./public/images/about.png" alt="Ver mais">
</a>
</div>
<footer>
<strong>Santo inacio</strong>
<p>Piaui</p>
</footer>
</aside>
<div id="mapid" class="animate-appear">
</div>
<a href="./ongs.html" class="create-ongs" title="Cadastre uma ong">
<img src="./public/images/plus.svg" alt="Criar Ong">
</a>
</div>
<script src='public/scripts/page-ongs.js'></script>
</body>
</html>