-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (59 loc) · 1.56 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
<html>
<head>
<title>Play PHP-FIG Bingo!</title>
<link rel="stylesheet" rev="stylesheet" href="bingo-card.css" />
<script type="text/javascript" src="bingo-card.js">
</script>
</head>
<body>
<h1>Play PHP-FIG Bingo!</h1>
<p>
Thanks to FIG Bingo, reading the PHP-FIG mailing list no longer needs to be a depressing act. The paranoid delusions of a few will no longer make your draw hurt from hitting the floor so regularly. Instead, you can just scratch off BINGO letters and have a grand old time.
</p>
<table>
<tr>
<th width="20%">B</th>
<th width="20%">I</th>
<th width="20%">N</th>
<th width="20%">G</th>
<th width="20%">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="free">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>
<p><a href="#" id="reload">Click here</a> to create a new card</p>
</body>
</html>