-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.47 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Ruleta Contable</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="icons/roulette.png">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" />
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-10" id="div-canvas" style="border: 1px solid black">
<canvas class="img-fluid" id="canvas" width="900px" height="900px">
¡No tiene soporte para canvas!
</canvas>
</div>
<div class="col-2">
<div class="row">
<div class="col-12 marcador">
<h4 class="mt-5">Primer juego</h4>
<div class="marca-juego mt-5"></div>
</div>
<div class="col-12 marcador">
<h4 class="mt-5">Segundo juego</h4>
<div class="marca-juego mt-5"></div>
</div>
<div class="col-12 marcador">
<h4 class="mt-5">Tercer juego</h4>
<div class="marca-juego mt-5"></div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/bootstrap.bundle.js"></script>
<script src="js/ruleta.js"></script>
<script src="js/pregunta.js"></script>
<script src="js/main.js"></script>
</body>
</html>