-
Notifications
You must be signed in to change notification settings - Fork 3
/
orphanages.html
55 lines (43 loc) · 1.72 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
47
48
49
50
51
52
53
54
55
<!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="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="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-orphanages.css" />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;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>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>
<script src="./public/scripts/page-orphanages.js">
</script>
</body>
</html>