-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorphanages.html
More file actions
executable file
·50 lines (41 loc) · 1.76 KB
/
orphanages.html
File metadata and controls
executable file
·50 lines (41 loc) · 1.76 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
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Localize um orfanato | Happy</title>
<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 href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet">
<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">
</head>
<body>
<div id="page-orphanages">
<aside class="animate-right">
<header>
<a href="index.html">
<img src="./public/images/map-marker.svg" alt="Happy">
</a>
<h2>Escolha um orfanato no mapa</h2>
<p>Muitas crianças estão esperando a sua visita :)</p>
</header>
<footer>
<strong>Rio do Sul</strong>
<p>Santa Catarina</p>
</footer>
</aside>
<div id="mapid"
class="animate-appear"></div>
<a href="create-orphanage.html"
class="create-orphanage"
title="Cadastre um orfanato">
<img src="./public/images/plus.svg" alt="Criar orfanato">
</a>
</div><!--page-orphanages-->
<script src="./public/scripts/page-orphanages.js"></script>
</body>
</html>