-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplay.html
33 lines (31 loc) · 1.08 KB
/
play.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bingo Generator</title>
<script type="text/javascript" src="js/jquery.1.10.2.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<link type="text/css" href="css/bootstrap.min.css" rel="stylesheet"></style>
<link type="text/css" href="css/app.css" rel="stylesheet"></style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="row" id="settingsform">
<div class="col-lg-12 form form-horizontal">
<div class="form-group">
<div class="col-lg-12" style="text-align:center;">
<button id="play" class="btn btn-success">Play</button>
</div>
</div>
</div><!-- .col-lg-6 printable -->
</div>
<div id="container" class="play">
<!-- Results will be printed here -->
</div>
</div><!-- .col-lg-12 -->
</div><!-- .row #settingsform -->
</div><!-- .container -->
</body>
</html>