-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbingo.html
73 lines (63 loc) · 1.82 KB
/
bingo.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
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Cambay' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
<meta charset="utf-8" />
<title>Bingo</title>
<link rel="stylesheet" type="text/css" href="bingo.css" />
<script type="text/javascript" src="scripts/bingo.js"></script>
</head>
<body onload="newCard()">
<div id="container">
<div id="header">
<h1>Create a BINGO Card</h1>
</div>
<div id="content">
<table id="bingotable">
<tr>
<th class="orange">B</th>
<th class="orange">I</th>
<th class="orange">N</th>
<th class="orange">G</th>
<th class="orange">O</th>
</tr>
<tr>
<td id="square0"> </td>
<td id="square1"> </td>
<td id="square2"> </td>
<td id="square3"> </td>
<td id="square4"> </td>
</tr>
<tr>
<td id="square5"> </td>
<td id="square6"> </td>
<td id="square7"> </td>
<td id="square8"> </td>
<td id="square9"> </td>
</tr>
<tr>
<td id="square10"> </td>
<td id="square11"> </td>
<td id="squarefree"> FREE</td>
<td id="square12"> </td>
<td id="square13"> </td>
</tr>
<tr>
<td id="square14"> </td>
<td id="square15"> </td>
<td id="square16"> </td>
<td id="square17"> </td>
<td id="square18"> </td>
</tr>
<tr>
<td id="square19"> </td>
<td id="square20"> </td>
<td id="square21"> </td>
<td id="square22"> </td>
<td id="square23"> </td>
</tr>
</table>
</div>
<p><a href="#" onclick="anotherCard()">Click here</a> to create a new card</p>
</body>
</html>