-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
423 lines (340 loc) · 18.5 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Breathing Hope - NASA</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<h1 class="text-light"><a href="index.html"><span>Breathing Hope</span></a></h1>
</div>
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#features">Map</a></li>
<li><a href="#features">Challenges</a></li>
<li><a href="#details">App</a></li>
<li><a href="#team">Team</a></li>
</nav><!-- .nav-menu -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="container">
<div class="row">
<div class="col-lg-7 pt-5 pt-lg-0 order-2 order-lg-1 d-flex align-items-center">
<div data-aos="zoom-out">
<h1>¡A new social network to leave your mark on the world!</h1>
<h2>Join with environmental activists from all over the country</h2>
</div>
</div>
<div class="col-lg-5 order-1 order-lg-2 hero-img" data-aos="zoom-out" data-aos-delay="300">
<img src="assets/img/images-03.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
<svg class="hero-waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 24 150 28 " preserveAspectRatio="none">
<defs>
<path id="wave-path" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z">
</defs>
<g class="wave1">
<use xlink:href="#wave-path" x="50" y="3" fill="rgba(255,255,255, .1)">
</g>
<g class="wave2">
<use xlink:href="#wave-path" x="50" y="0" fill="rgba(255,255,255, .2)">
</g>
<g class="wave3">
<use xlink:href="#wave-path" x="50" y="9" fill="#fff">
</g>
</svg>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch" data-aos="fade-right">
<a href="https://youtu.be/WB_-RpqULsI" class="venobox play-btn mb-4" data-vbtype="video" data-autoplay="true"></a>
</div>
<div class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5" data-aos="fade-left">
<h3 style="color: #000000;">Find out in real time the situation of our planet with data from NASA</h3>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<div class="icon"><i class="bx bx-fingerprint"></i></div>
<h4 class="title"><a href="">Connect</a></h4>
<p class="description">Find people from near locations to interact with and work on climate change activities</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<div class="icon"><i class="bx bx-gift"></i></div>
<h4 class="title"><a href="">Rank</a></h4>
<p class="description">The more challenges you do, your rank will be higher</p>
</div>
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<div class="icon"><i class="bx bx-atom"></i></div>
<h4 class="title"><a href="">Environmental sustainability</a></h4>
<p class="description">Let's work to create a better planet for the future generations</p>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Map Section ======= -->
<section id="features" class="features" id="map-div">
<div class="container-fluid" id="map-div">
<center><iframe src="NASA_APIs" id="map-frame"></iframe></center>
</div>
</section><!-- End Map Section -->
<!-- ======= Features Section ======= -->
<section id="features" class="features">
<div class="container">
<div class="section-title" data-aos="fade-up">
<p style="color:#000000";>Some challenges that you can find in our app</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="50">
<i class="ri-store-line" style="color: #ffbb2c;"></i>
<h3 style="color: #000000;"><a href="">Make ecoblocks</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<i class="ri-bar-chart-box-line" style="color: #5578ff;"></i>
<h3 style="color: #000000;"><a href="">Non-meat day</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="150">
<i class="ri-calendar-todo-line" style="color: #e80368;"></i>
<h3 style="color: #000000;"><a href="">No more plastic</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<i class="ri-paint-brush-line" style="color: #e361ff;"></i>
<h3 style="color: #000000;"><a href="">Harvest your own food</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="250">
<i class="ri-database-2-line" style="color: #47aeff;"></i>
<h3 style="color: #000000;"><a href="">Public transportation</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="300">
<i class="ri-gradienter-line" style="color: #ffa76e;"></i>
<h3 style="color: #000000;"><a href="">Beach cleaning</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="350">
<i class="ri-file-list-3-line" style="color: #11dbcf;"></i>
<h3 style="color: #000000;"><a href="">Use reusable bags</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="400">
<i class="ri-price-tag-2-line" style="color: #4233ff;"></i>
<h3 style="color: #000000;"><a href="">Using bamboo toothbrush</a></h3>
</div>
</div>
</div>
</div>
</section><!-- End Features Section -->
<!-- ======= Details Section ======= -->
<section id="details" class="details">
<div class="container">
<div class="row content">
<div class="col-md-4" data-aos="fade-right">
<img src="assets/img/images-05.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-4" data-aos="fade-up">
<h3>Social</h3>
<p class="font-italic">
What better than live together while you inform yourself and learn?
Interact with people around the globe world as you learn about environmental problems and solutions we can implement together to reduce them.
</p>
<ul>
<li><i class="icofont-check"></i> Chat with your friends, share posts, react to their actions and raise awareness while having fun.</li>
<li><i class="icofont-check"></i> Create chat groups to discuss the problems demonstrated by the NASA satellites.</li>
<li><i class="icofont-check"></i> Enjoy the interaction with people from around the world and know what problems they seek to solve in their country.</li>
</ul>
</div>
</div>
<div class="row content">
<div class="col-md-4 order-1 order-md-2" data-aos="fade-left">
<img src="assets/img/images-02.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5 order-2 order-md-1" data-aos="fade-up">
<h3>Principal</h3>
<p class="font-italic">
The lack of information about the environmental difficulties that we live as a planet are a problem.
Thanks to the connection of our application with the real-time data of NASA, we can know how our planet is affected.
Use our app and see the change. <br>
Together we can create a community that reduces these problems!
</p>
<ul>
<li><i class="icofont-check"></i> Graphical maps on: carbon dioxide emissions, temperatures, anomalies and more.</li>
<li><i class="icofont-check"></i> Data on the main environmental problems that cover the provinces..</li>
<li><i class="icofont-check"></i> Enjoy the interaction with people from all over the world and know what problems they seek to solve in their country.</li>
</ul>
</div>
</div>
<div class="row content">
<div class="col-md-4" data-aos="fade-right">
<img src="assets/img/images-04.png" class="img-fluid" alt="">
</div>
<div class="col-md-8 pt-5" data-aos="fade-up">
<h3>Challenges</h3>
<p>Every day we learn about more problems in our environment, but do we know how to contribute? In addition, is there something calling us to do it?
By being able to interact with more people throughout the world and connect with our friends through the social part of the app, we find not only a means of entertainment, but also a key to contribute more and more to the sustainability of the planet.</p>
<ul>
<li><i class="icofont-check"></i> Participate in individual or group challenges in which participants are tested to see the capacities they have to make a change.</li>
<li><i class="icofont-check"></i> Play, have fun and realize the benefits that changes bring together.</li>
<li><i class="icofont-check"></i> Rank higher and higher by completing a challenge, compare your progress to your friend's, and let's be a bigger and bigger community together that says: This is not Planet B!</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Details Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Team</h2>
<p>Our Great Team</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-6">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/team/Borloz.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Andrés Borloz Chinchilla</h4>
<span>Investigator</span>
<div class="social">
<a href="https://www.facebook.com/joseandres.borlozchinchilla"><i class="icofont-facebook"></i></a>
<a href="https://www.instagram.com/andres_borloz08/"><i class="icofont-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="member" data-aos="zoom-in" data-aos-delay="200">
<div class="pic"><img src="assets/img/team/Daniela.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Daniela Muñoz Arroyo</h4>
<span>Designer</span>
<div class="social">
<a href=""><i class="icofont-facebook"></i></a>
<a href=""><i class="icofont-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="300">
<div class="pic"><img src="assets/img/team/Jackeline.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Jackeline García Alvarado</h4>
<span>Developer</span>
<div class="social">
<a href="https://www.facebook.com/profile.php?id=100017796499349"><i class="icofont-facebook"></i></a>
<a href="https://www.instagram.com/jackelinegarcialv/"><i class="icofont-instagram"></i></a>
<a href="https://www.linkedin.com/in/jackeline-garc%C3%ADa-alvarado-1b867718a/"><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="assets/img/team/Argerie.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Argerie Vega García</h4>
<span>Designer</span>
<div class="social">
<a href="https://www.instagram.com/argerie_vega/?r=nametag"><i class="icofont-facebook"></i></a>
<a href="https://www.facebook.com/argerie.vega"><i class="icofont-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="assets/img/team/Josue.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Josue Chaves Arias</h4>
<span>Investigator</span>
<div class="social">
<a href="https://www.facebook.com/josueantonio.chavesarias"><i class="icofont-facebook"></i></a>
<a href="https://instagram.com/josue_ch16?r=nametag"><i class="icofont-instagram"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="member" data-aos="zoom-in" data-aos-delay="400">
<div class="pic"><img src="assets/img/team/Derek.png" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Derek Rodríguez Villalobos</h4>
<span>Developer</span>
<div class="social">
<a href=" https://www.facebook.com/people/Derek-Rodriguez/100010897848396"><i class="icofont-facebook"></i></a>
<a href=" https://www.linkedin.com/in/derek-rodr%C3%ADguez-villalobos-a350121b5/"><i class="icofont-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="container">
<div class="copyright">
© Copyright <strong><span>Breathing Hope</span></strong>. All Rights Reserved
<div class="social-links mt-3">
<a href="https://www.facebook.com/Breathing-Hope-104671144743712" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://instagram.com/breathing.hope2020?igshid=yyz02nv7bfzg" class="instagram"><i class="bx bxl-instagram"></i></a>
</footer><!-- End Footer -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/waypoints/jquery.waypoints.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>