-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (64 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/main.css" />
<link rel="stylesheet" href="./assets/css/main.css.map" />
<script src="https://unpkg.com/interactjs/dist/interact.min.js"></script>
<script src="./app/nivel-1.js"></script>
<title>Inicio - Compost Master</title>
<style type="text/css">
body {
font-family: sans-serif;
}</style>
</head>
<body>
<header class="barra-navegacion">
<span class="btn-menu fa fa-bars"></span>
</header>
<ul class="menu-desplegable">
<li> <a href="index.html">Inicio</a></li>
<li> <a href="#">Importancia de compostar</a></li>
<li class="menu-juego"> <a href="nivel-1.html"> Jugar </a>
<ul class="menu-secundario">
<li><a href="nivel-1.html">Nivel 1 </a></li>
<li><a href="nivel-2.html"> Nivel 2 </a></li>
</ul>
</li>
<li> <a href="#">Mapa</a></li>
</ul>
<div class="contenedor">
<section class="contenedor-pres">
<div class="titulo-pres-juego">COMPOST </br> MASTER</div>
<div class="contenedor-img-texto">
<img class="img-pres" src="assets/img/ilustraciones/portada.jpg">
<p class="texto-pres">¡Aprende a usar la compostera como un pro para cuidar el planeta!</p>
</div>
</section>
<section class="contenedor-articulos">
<article class="articulo-juego">
<h3 class="tit-art">Pónte a prueba</h3>
<div class="texto-art">¿Eres capaz de separar correctamente los desechos que pueden ir a la compostera
de los que no?</div>
<div class="btn-art"> <a class="btn-jugar"href="nivel-1.html">¡Jugar!</a> </div>
</article>
<article class="articulo-juego">
<h3 class="tit-art">La importancia del compostaje</h3>
<div class="texto-art">
Irure in et sint officia exercitation aliquip adipisicing. Magna eiusmod incididunt consectetur ex ut magna eiusmod officia [...]</div>
<div class="btn-art"> <a class="btn-jugar" href="#">Seguir leyendo</a> </div>
</article>
</section>
</div>
<footer class="contenedor-footer-pres">
<div class="titulo juego">
COMPOST MASTER 2021
</div>
<div class="autora-juego">
Clara Salgado
</div>
</footer>
</body>
</html>