-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
61 lines (60 loc) · 1.47 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
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bingo Card Generator</title>
<link rel="stylesheet" type="text/css" href="/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/main.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="/js/functions.js" type="text/javascript"></script>
</head>
<body>
<center>
<h1 id="heading" onload="title()">Bingo Card Generator</h1>
<br /><div id="image"></div><br />
<table class="bingo-table table table-bordered" id="bingo">
<tr>
<th id="1"></th>
<th id="2"></th>
<th id="3"></th>
<th id="4"></th>
<th id="5"></th>
</tr>
<tr>
<th id="6"></th>
<th id="7"></th>
<th id="8"></th>
<th id="9"></th>
<th id="10"></th>
</tr>
<tr>
<th id="11"></th>
<th id="12"></th>
<th id="13"></th>
<th id="14"></th>
<th id="15"></th>
</tr>
<tr>
<th id="16"></th>
<th id="17"></th>
<th id="18"></th>
<th id="19"></th>
<th id="20"></th>
</tr>
<tr>
<th id="21"></th>
<th id="22"></th>
<th id="23"></th>
<th id="24"></th>
<th id="25"></th>
</tr>
</table>
<br />
<input type="checkbox" id="freeSpace">Show Free Space?</input>
<br />
<button type="button" class="btn btn-primary" onclick="generate()">Generate</button>
<script>
title();
generate();
</script>
</body>
</html>