-
Notifications
You must be signed in to change notification settings - Fork 3
/
mem_pastizal.html
executable file
·114 lines (112 loc) · 4.11 KB
/
mem_pastizal.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
<!DOCTYPE html>
<html lang="es-MX">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<meta name="description" content="México, país de las maravillas. Sitio web interactivo cuyo objetivo es el acercamiento de los niños al conocimiento de la riqueza natural del país a través de caricaturas, fotografías, videos, juegos y sonidos."/>
<meta name="author" content="Comisión Nacional para el Conocimiento y Uso de la Biodiversidad, CONABIO."/>
<title>Pastizal | Memorama</title>
<!-- jquery del CDN de google -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<!-- Google fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pangolin&family=Work+Sans:ital,wght@0,300;0,400;0,800;1,400&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css">
<link rel="stylesheet" type="text/css" href="css/jquery-ui.structure.css">
<link rel="stylesheet" type="text/css" href="css/jquery-ui.theme.css">
<link href="css/font-awesome.css" type="text/css" rel="stylesheet"/>
<link href="css/styles.css" rel="stylesheet"/>
<!-- animate-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="assets/mega-site-navigation/css/style.css"> <!-- menu -->
<link href="css/memorama.css" rel="stylesheet" type="text/css">
<script src="js/jquery-ui.min.js"></script>
<script src="js/all.js"></script>
<script src="js/jquery.timer.js"></script>
<script src="js/memorama.js"></script>
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/png"/>
</head>
<body class="nav-is-fixed">
<header class="cd-main-header"></header>
<main class="cd-main-content">
<div id="dataRow">
<div id="showTime">
<span>Tiempo</span>
<span id="numbers">00:00</span>
</div>
<div id="ecoName">Pastizal</div>
</div>
<div id="ecosistema" data-name="pastizal"></div>
<section>
<article id="espacioTarjetas">
</article>
<br>
<nav id="menuCirculo">
<ul>
<li>
<a href="mem_selvah.html" class="circulo">S</a>
<p>Selva húmeda</p>
</li>
<li>
<a href="mem_bosquet.html" class="circulo">B</a>
<p>Bosque templado</p>
</li>
<li class="selected">
<a href="mem_pastizal.html" class="circulo">P</a>
<p>Pastizal</p>
</li>
<li>
<a href="mem_matorral.html" class="circulo">M</a>
<p>Matorral</p>
</li>
<li>
<a href="mem_pacifico.html" class="circulo">P</a>
<p>Océano Pacífico</p>
</li>
<li>
<a href="mem_golfo.html" class="circulo">GC</a>
<p>Golfo y Caribe</p>
</li>
<li>
<a href="mem_campo.html" class="circulo">C</a>
<p>Campo</p>
</li>
<li>
<a href="mem_ciudad.html" class="circulo">C</a>
<p>Ciudad</p>
</li>
</ul>
</nav>
</section>
<div id="lid"></div>
<div class="bottom-spacer-2"></div>
</main>
<footer class="footer bg-verdeselva small text-center text-white-50" id="footer"></footer>
<script>
$(document).ready(function () {
$('header').load('./includes/header.html', function () {
$.getScript('./assets/mega-site-navigation/js/main.js');
$.getScript('./assets/mega-site-navigation/js/jquery.mobile.custom.min.js');
});
$('footer').load('./includes/footer.html');
});
</script>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/morphing-modal/js/velocity.min.js"></script> <!-- velocity -->
<script src="assets/morphing-modal/js/modernizr.js"></script> <!-- Modernizr -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-295WCBSQXS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-295WCBSQXS');
</script>
<!-- End Google tag (Google analytics 4) -->
</body>
</html>