-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
88 lines (63 loc) · 3.45 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
<!DOCTYPE html>
<!-- To include Spanish accents -->
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
<head>
<!--Fb preview image-->
<meta property="og:image" content="static/images/previewImage.png" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149667597-3"></script>
<script src="js/gtag.js"></script>
<title>Visualizador PROAgua</title>
<link rel="stylesheet" href="css/style.css"/>
<!-- Needed for Navbar-->
<link rel="stylesheet" href="lib/css/tachyons.min.css" />
<link rel="stylesheet" href="css/dropdown.css" />
<link rel="stylesheet" href="css/w3.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/overlay.css" />
<script src="lib/js/includehtml.js"></script>
<!-- About Overlay -->
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<div w3-include-html="about.html"></div>
</div>
</div>
<!-- End Of About Overlay -->
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<!-- End Of: Needed for Navbar-->
</head>
<body class="bg-black white-80 avenir fw5">
<nav id="navbar">
<div w3-include-html="html/navbar.html"></div>
</nav>
<img src="static/images/Planet.png" style="opacity: 0.7;"/>
<center class='titulo'>
<h1> Desarrollo e impactos en los servicios ecosistémicos en la región amazónica de Madre de Dios - Acre - Pando</h1>
<button class="coolButtonSmall" style="font-style: italic; font-size: x-large; margin-bottom: 10vh; max-width:100vh;" onClick="openNav();">Acerca del proyecto PRO-Agua</button>
<div class="w3-row">
<div class="w3-quarter">
<button class="coolButtonSmall" onClick="location.href='hidricoPEM.html';">Diagnóstico de riesgos hídricos</button>
<p class="coolButtonTexts">¿Cómo afectará el desarrollo a los recursos hídricos de las ciudades?</p>
</div>
<div class="w3-quarter">
<button class="coolButtonSmall" onClick="location.href='saludPEM.html';">Diagnóstico de riesgo epidemiológico</button>
<p class="coolButtonTexts">¿Cómo afectará el desarrollo al hábitat de los mosquitos portadores del dengue?</p>
</div>
<div class="w3-quarter">
<button class="coolButtonSmall" onClick="location.href='floodPEM.html';">Diagnóstico de riesgo de inundaciones</button>
<p class="coolButtonTexts">¿Cuál es el papel del capital natural en la reducción de los picos de inundación y los riesgos de inundación para las comunidades?</p>
</div>
<div class="w3-quarter">
<button class="coolButtonSmall" onClick="location.href='futuroPampa.html';">Restauración en áreas mineras</button>
<p class="coolButtonTexts">¿Dónde se puede enfocar la restauración para maximizar los servicios de los ecosistemas?</p>
</div>
</div>
</center>
</body>
<!-- Needed for Navbar-->
<script>includeHTML();</script>
<script src="js/overlay.js"></script>
</html>