-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.33 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>demo</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="bootstrap-3.3.6-dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<h2>Memory Game</h2>
<div class="bodyc">
<div class="vertical-container">
<div class="btn-group-vertical choose-num-of-players">
how many players?
<button type="button" class="btn btn-primary">2</button>
<button type="button" class="btn btn-primary">3</button>
<button type="button" class="btn btn-primary">4</button>
<button type="button" class="btn btn-primary">5</button>
<button type="button" class="btn btn-primary">6</button>
<button type="button" class="btn btn-primary">7</button>
<button type="button" class="btn btn-primary">8</button>
<button type="button" class="btn btn-primary">9</button>
<button type="button" class="btn btn-primary">10</button>
</div>
<div id="cont" hidden>
</div>
</div>
</div>
<script src="jquery-2.2.4.js"></script>
<script src="bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
<script src="index.js"></script>
</body>
</html>