-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (77 loc) · 3.86 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
<!DOCTYPE html>
<html lang="es">
<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">
<!-- FAVICON + CHATBOX IMG & CHATBOX DESCRIPTION -->
<meta name="description"
content="Disfruta del mítico juego Mastermind ahora en formato digital. Podrás echar una partida en cualquier sitio desde tu movil o tomarte un descanso mientras trabajas en el PC.">
<link rel="icon" href="./img/logo_blackBack_greenText_justHead.png" type="image/x-icon">
<meta property="og:image" content="https://i.gifer.com/9RBi.gif">
<!-- BOOTSTRAP CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- MAIN CSS -->
<link rel="stylesheet" href="./css/styles.css">
<title>MasterMind</title>
</head>
<body>
<!-- MAIN BACKGROUND -->
<div id="mainBackground" class="container-fluid p-0 d-flex flex-column">
<div class="menuBar">
<a href="./index.html">
<div class="elementMenu"> <img src="./img/house_icon.svg" alt="Home icon" class="svgColor"> </div>
</a>
<a href="./pages/about.html">
<div class="elementMenu"><img src="./img/question_icon.svg" alt="Help icon" class="svgColor">
</div>
</a>
<a href="./pages/playerselect.html">
<div class="elementMenu"> <img src="./img/mechanism_options_settings_configuration_setting_icon.svg"
alt="Level icon" class="svgColor"> </div>
</a>
<a href="javascript:location.reload();">
<div class="elementMenu"><img src="./img/refresh_icon.svg" alt="Reload icon" class="svgColor">
</div>
</a>
<a href="javascript:location.reload()">
<div class="elementMenu"> <img src="./img/navigation_back_arrow_left_icon.svg" alt="Back icon"
class="svgColor"></div>
</a>
</div>
<div
class="containerIndex col-10 col-md-3 col-lg-3 col-xl-10 d-flex flex-column justify-content-start align-items-center">
<!-- DINAMIC COLORED TITLE -->
<div id="gameName">MASTERMIND</div>
<!-- VIDEO LOOP -->
<div class="videoContainer2 d-flex flex-column align-items-center col-4 col-md-4 col-lg-4 col-xl-4">
<video autoplay loop muted>
<source src="./img/colores_webm.webm" type="video/webm">
</video>
</div>
<!-- BUTTONS START AND HOW TO PLAY -->
<div class="row containerButtons d-flex align-items-start">
<!-- BUTTON START -->
<div class="col-6 col-md-3 col-lg-3 col-xl-3 button">
<div class="start textButton" onclick="window.location.href='./pages/playerselect.html'">
<p class="textContainer mt-2">NUEVO JUEGO</p>
</div>
</div>
<!-- BUTTON HOW TO PLAY -->
<div class="col-6 col-md-3 col-lg-3 col-xl-3 button">
<div class="howtoplay textButton" onclick="window.location.href='./pages/about.html'">
<p class="textContainer mt-2">CÓMO JUGAR</p>
</div>
</div>
</div>
</div>
</div>
<!-- MAIN SCRIP -->
<script src="./js/main.js"></script>
<!-- BOOTSTRAP SCRIPT -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
</body>
</html>