-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (59 loc) · 3.02 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
<!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">
<title>Pantalla principal</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<!-- CONTIENE TODA LA PAGINA -->
<div class="container-fluid paginaPrincipal d-flex flex-column">
<!-- FONDO DE LA PAGINA -->
<div class="fondoprincipal">
<img src="./img/fondo.jpeg" id="fondocalamar" class="img-fluid">
<div class="contenido">
<!-- TITULO CABECERA -->
<div class="nombrecabecera">
<img src="./img/tituloCalamar.png" class="img-fluid">
</div>
<!-- CONTIENE LA SELECCION DE DIFICULTA QUE REDIRIGE AL TABLERO DE JUEGO -->
<div class="row d-flex justify-content-center" id="contenidoDificultades">
<div class="col-md-6 col-lg-4 dificultades">
<div class="d-flex flex-column align-items-center">
<div class="textoDificultad mb-3">
<img src="./img/eligeDificultad2.png" class="img-fluid">
</div>
<div class="d-flex flex-column">
<a href="./pages/colores.html" onclick="setDifficulty('facil')" class="btn-link">
<img src="./img/facil.png" class="button-image">
</a>
<a href="./pages/colores.html" onclick="setDifficulty('intermedio')" class="btn-link">
<img src="./img/intermedio.png" class="button-image">
</a>
<a href="./pages/colores.html" onclick="setDifficulty('dificil')" class="btn-link">
<img src="./img/dificil.png" class="button-image">
</a>
</div>
</div>
</div>
</div>
</div>
<!-- BOTON DE VOLVER -->
<div class="container-fluid parteBottom">
<a href="./pages/about.html">
<button type="button" class="about">ABOUT</button>
</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<script>
function setDifficulty(difficulty) {
sessionStorage.setItem("difficulty", difficulty);
}
</script>
</body>
</html>