-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfiguracion.html
More file actions
52 lines (49 loc) · 2.16 KB
/
configuracion.html
File metadata and controls
52 lines (49 loc) · 2.16 KB
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
<!DOCTYPE html>
<html>
<head>
<title class="confHeadLabel">Shoten Samurai - Configuracion</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/configuration.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/basicConfiguration.js"></script>
<script src="js/configuracion.js"></script>
</head>
<body>
<header id="configLabel">Configuracion</header>
<section>
<div>
<div class="pregunta">
<label id="idiomaLabel">Idioma</label>
<select name="idioma" id="idiomaSelector">
<option value="en">English</option>
<option value="es">Español</option>
</select>
</div>
<div class="pregunta">
<label id="musicaLabel">Musica</label>
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="musicSwitch">
<label class="onoffswitch-label" for="musicSwitch">
<span class="onoffswitch-inner music"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
<div class="pregunta">
<label id="sonidoLabel">Sonido</label>
<div class="onoffswitch">
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="soundSwitch">
<label class="onoffswitch-label" for="soundSwitch">
<span class="onoffswitch-inner sound"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
</div>
</section>
<a href="index.html" class="scrollButton-min">
<p>Menu</p>
</a>
</body>
</html>