-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
34 lines (34 loc) · 1.01 KB
/
game.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="game.css">
<script type="text/javascript" src="game.js">
</script>
</head>
<title>FunGame</title>
<body onload="initlization()">
<p style="text-align: center;">Number to be searched is 5</p>
<div>
<table id="theTable" border="2" cols="3" width="300px" height="300px" align="center">
<tr>
<td id="td1" onclick="content(this)" align="center"></td>
<td id="td2"onclick="content(this)" align="center"></td>
<td id="td3"onclick="content(this)" align="center"></td>
</tr>
<tr>
<td id="td4"onclick="content(this)" align="center"></td>
<td id="td5"onclick="content(this)" align="center"></td>
<td id="td6"onclick="content(this)" align="center"></td>
</tr>
<tr>
<td id="td7"onclick="content(this)" align="center"></td>
<td id="td8"onclick="content(this)" align="center"></td>
<td id="td9"onclick="content(this)" align="center"></td>
</tr>
</table>
</div>
<div style="font-weight: bold" id="timer">
</div>
<p id="para"></p>
</body>
</html>