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 pathong.html
More file actions
111 lines (89 loc) · 3.91 KB
/
ong.html
File metadata and controls
111 lines (89 loc) · 3.91 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
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
110
111
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<title>Fazenda da Esperança | Support</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 rel="stylesheet" href="./public/css/main.css" />
<link rel="stylesheet" href="./public/css/animations.css" />
<link rel="stylesheet" href="./public/css/page-ong.css" />
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<div id="page-ong">
<aside class='animate-right sidebar'>
<img src="./public/images/map-marker.png" alt="Support">
<footer>
<button onclick=history.back()>
<img src="./public/images/arrow-back.svg" alt="voltar">
</button>
</footer>
</aside>
<main class="animate-appear with-sidebar">
<div class="ong-details">
<img src="./public/images/home.jpg" alt="Fazenda da esperança">
<div class="images">
<button onclick="selectImage(event)" class="active" type="button">
<img src="https://source.unsplash.com/random?id=1" alt="Fazenda da esperença">
</button>
<button onclick="selectImage(event)" type="button">
<img src="https://source.unsplash.com/random?id=2" alt="Fazenda da esperença">
</button>
<button onclick="selectImage(event)" type="button">
<img src="https://source.unsplash.com/random?id=3" alt="Fazenda da esperença">
</button>
<button onclick="selectImage(event)" type="button">
<img src="https://source.unsplash.com/random?id=4" alt="Fazenda da esperença">
</button>
<button onclick="selectImage(event)" type="button">
<img src="https://source.unsplash.com/random?id=5" alt="Fazenda da esperença">
</button>
<button onclick="selectImage(event)" type="button">
<img src="https://source.unsplash.com/random?id=6" alt="Fazenda da esperença">
</button>
</div>
<div class="ong-details-content">
<h1>Fazenda da esperança</h1>
<p>
A Fazenda da Esperança é uma comunidade terapêutica acolhe jovens que desejam se libertar das drogas e do
álcool, mas também aqueles que anseiam descobrir suas vocações
</p>
<div class="map-container">
<div id="mapid">
</div>
<footer>
<a href="">Ver rotas no google maps</a>
</footer>
</div>
<hr>
<h2>Intruções para Visita</h2>
<p>Aberta ao publico toda sexta:</p>
<div class="open-details">
<div class="hour">
<img src="./public/images/clock.svg" alt="Horários">
Horário de visitas Das 18h até 8h
</div>
<div class="open-on-weekends">
<img src="./public/images/info.svg" alt="Informações">
<a id=link href="https://www.portalfazenda.org/ComoAjudar/Home#doacao-online">Informações para doação</a>
</div>
</div>
<button class="primary-button" type="button">
<img src="./public/images/whatsapp.svg" alt="Chamar no whatsapp">
Entrar em contato
</button>
</div>
</div>
</main>
</div>
<script src='public/scripts/page-ong.js'></script>
</body>
</html>