-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
rel="stylesheet"
/>
<title>GAME</title>
<style>
td {
border: 1px solid #000000;
}
table {
border: 1px solid #000000;
}
.seleccion {
background-color: #d25757;
}
div#buscar {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="panel panel-default">
<div class="panel-heading text-center">
<h4>ENCUENTRA LA FILA EN EL TABLERO</h4>
</div>
<div class="panel-body text-center">
<div class="text-center" id="buscar"></div>
<div id="juego"></div>
<h1 id="mensaje"></h1>
</div>
<div class="panel-footer text-center">
<input
type="button"
onclick="javascript:location.reload()"
value="Partida nueva"
/>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="dist/main.js"></script>
</body>
</html>