-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (80 loc) · 3.82 KB
/
index.html
File metadata and controls
85 lines (80 loc) · 3.82 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML,CSS,JavaScript">
<meta name="author" content="Roberto Muñoz Garcia">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ"
crossorigin="anonymous">
<script src="https://use.fontawesome.com/8b4390e89f.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<title></title>
</head>
<body style="background-color:black">
<div class="container-fluid">
</br>
<div class="row text-center">
<div class="col-1 col-sm-1 col-md-2 col-lg-3 col-xl-3"></div>
<div style="background-color:white" class="jumbotron col-10 col-sm-10 col-md-8 col-lg-6 col-xl-6">
<h2>SIMON</h2>
<div class="row">
<div class="col-4"></div>
<div class="col-4 jumbotron" id="verde"></div>
<div class="col-4"></div>
</div>
<div class="row">
<div class="col-1"></div>
<div class="col-3 jumbotron" id="amarillo">
</br>
</br>
</div>
<div class="col-4">
<div class="row">
<div class="col-12">
<div class="checkbox">
<label>
<input type="checkbox" id="estricto" value="">STRICT</label>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<button type="button" id="empezar" class="btn btn-warning">START</button>
</div>
</div>
</br>
<div class="row">
<div class="col-2"></div>
<div class="col-8" style="background-color:black; color:white" id="turnoActual">
<h2>0</h2>
</div>
<div class="col-2"></div>
</div>
</div>
<div class="col-3 jumbotron" id="rojo">
</br>
</br>
</div>
</div>
<div class="row">
<div class="col-4"></div>
<div class="col-4 jumbotron" id="azul"></div>
<div class="col-4"></div>
</div>
</div>
<div class="col-1 col-sm-1 col-md-2 col-lg-3 col-xl-3"></div>
</div>
</div>
<!-- jQuery first, then Bootstrap JS. -->
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n"
crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn"
crossorigin="anonymous"></script>
<script src="script/simon.js"></script>
</body>
</html>