-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (40 loc) · 2.77 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
<!doctype html>
<html lang="en">
<head>
<title>Buscaminas</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<link rel="stylesheet" href="./css/style.css">
</head>
<body oncontextmenu="return false;">
<nav class="navbar navbar-dark bg-secondary shadow">
<a class="navbar-brand" href="" onclick="return false;"><i class="fas fa-bomb"></i> Buscaminas</a>
</nav>
<br>
<div class="container">
<div id="board" class="card d-flex justify-content-center flex-row shadow-sm p-4 bg-light">
<div class="d-flex flex-column bd-highlight mb-3">
<div class="p-2 bd-highlight justify-content-center flex-row d-flex">
<div class="btn-group btn-group-lg w-100" role="group" aria-label="...">
<button id="mines_flag" type="button" class="btn btn-secondary btn-panel" disabled>0</button>
<button type="button" class="btn btn-secondary" onclick="new_game();">
<i class="fas fa-smile" style="color:yellow"></i>
</button>
<button id="time" type="button" class="btn btn-secondary btn-panel" disabled>000</button>
</div>
</div>
<div id="board_container" class="shadow-sm card p-2 bg-secondary bd-highlight"></div>
</div>
</div>
</div>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-3.3.1.js" onload="window.$ = window.jQuery = module.exports;"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="./js/minesweeper.js"></script>
</body>
</html>