-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathorphanage.html
109 lines (88 loc) · 3.29 KB
/
orphanage.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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-orphanage.css" />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="page-orphanage">
<aside class="animate-right"></aside>
<main>
<div class="orphanage-details">
<img src="./public/images/home.jpg" alt="Lar das meninas" />
<div class="images">
<button class="active" type="button">
<img src="./public/images/home.jpg" alt="Lar das meninas" />
</button>
<button type="button">
<img src="./public/images/home.jpg" alt="Lar das meninas" />
</button>
<button type="button">
<img src="./public/images/home.jpg" alt="Lar das meninas" />
</button>
<button type="button">
<img src="./public/images/home.jpg" alt="Lar das meninas" />
</button>
<button type="button">
<img src="./public/images/home.jpg" alt="Lar das meninas" />
</button>
<button type="button">
<img src="./public/images/home.jpg" alt="Lar das meninas" />
</button>
</div>
<div class="orphanage-details-content">
<h1>Lar das meninas</h1>
<p>
Presta assistência a crianças de 06 a 15 anos que se encontre em
situação de risco e/ou vulnerabilidade social.
</p>
<div class="map-container">
<div class="mapid"></div>
<footer>
<a href="">Ver rotas no Google Maps</a>
</footer>
</div>
<hr />
<h2>Instruções para visita</h2>
<p>
Veja como se sentir a vontade e traga muito amor e paciência para
dar.
</p>
<div class="open-details">
<div class="hour">
<img src="./public/images/clock.svg" alt="Horários">
Horários de visitas
Das 8h até as 18h
</div>
<div class="open-on-weekends">
<img src="./public/images/info.svg" alt="Informações">
Atendemos fim de semana.
</div>
</div>
</div>
</div>
</main>
</div>
<script src="./public/scripts/page-orphanage.js"></script>
</body>
</html>