-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorphanages.html
46 lines (40 loc) · 1.77 KB
/
orphanages.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Localize um orfanato | Happy</title>
<link rel="shortcut icon" href="public/images/logo-icon.png" type="image/x-icon">
<!-- Leaflet -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<link rel="stylesheet" href="public/css/main.css">
<link rel="stylesheet" href="public/css/page-orphanages.css">
<link rel="stylesheet" href="public/css/animations.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<div id="page-orphanages">
<aside class="animate-right">
<header>
<img src="public/images/map-marker.svg" alt="Happy">
<h2>Escolha um orfanato no mapa</h2>
<p>Muitas crianças estão esperando sua visita :)</p>
</header>
<footer>
<strong>Recife</strong>
<p>Pernambuco</p>
</footer>
</aside>
<div id="mapid" class="animate-appear"></div>
<a href="create-orphanage.html" class="create-orphanage animate-up" title="Cadastre seu orfanato">
<img src="public/images/plus.svg" alt="Criar orfanato">
</a>
</div>
<script src="public/scripts/page-orphanages.js"></script>
</body>
</html>