-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
86 lines (83 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>Forty shades of gray</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="fsog.css">
</head>
<body>
<div >
<p class="heading">Forty shades of gray</p>
</div>
<div class="t">
<span onclick="newg()" id="ng"><b>New Game</b></span>
<span class="wo"><span class="awords" >TIME :</span></span>
<span class="nu"><span id="time" class="ti">0.000</span></span>
</div>
<div class="ovfl">
<table id="mytab" >
<div class="marquee">
<tr class="marqueel">
<td onclick="myfun(0)"></td>
<td onclick="myfun(1)"></td>
<td onclick="myfun(2)"></td>
<td onclick="myfun(3)"></td>
<td onclick="myfun(4)"></td>
<td onclick="myfun(5)"></td>
<td onclick="myfun(6)"></td>
<td onclick="myfun(7)"></td>
<td onclick="myfun(8)"></td>
<td onclick="myfun(9)"></td>
</tr>
</div>
<tr class="marqueer">
<td onclick="myfun(10)">11</td>
<td onclick="myfun(11)">12</td>
<td onclick="myfun(12)">13</td>
<td onclick="myfun(13)">14</td>
<td onclick="myfun(14)">15</td>
<td onclick="myfun(15)">16</td>
<td onclick="myfun(16)">17</td>
<td onclick="myfun(17)">18</td>
<td onclick="myfun(18)">0</td>
<td onclick="myfun(19)">0</td>
</tr>
<tr class="marqueel">
<td onclick="myfun(20)">0</td>
<td onclick="myfun(21)">0</td>
<td onclick="myfun(22)">0</td>
<td onclick="myfun(23)">0</td>
<td onclick="myfun(24)">0</td>
<td onclick="myfun(25)">0</td>
<td onclick="myfun(26)">0</td>
<td onclick="myfun(27)">0</td>
<td onclick="myfun(28)">0</td>
<td onclick="myfun(29)">0</td>
</tr>
<tr class="marqueer">
<td onclick="myfun(30)">0</td>
<td onclick="myfun(31)">0</td>
<td onclick="myfun(32)">0</td>
<td onclick="myfun(33)">0</td>
<td onclick="myfun(34)">0</td>
<td onclick="myfun(35)">0</td>
<td onclick="myfun(36)">0</td>
<td onclick="myfun(37)">0</td>
<td onclick="myfun(38)">0</td>
<td onclick="myfun(39)">0</td>
</tr>
</table>
</div>
<div class="nu">
<span class="btim"><span class="awords">Best times:</span></span>
<span id="btime1" class="ti">0.000</span>
<span id="btime2" class="ti">0.000</span>
<span id="btime3" class="ti">0.000</span>
<span id="btime4" class="ti">0.000</span>
<span id="btime5" class="ti">0.000</span>
</div>
<audio id="aud1"><source src="1.mp3" type="audio/mpeg"></audio>
<audio id="aud2"><source src="2.mp3" type="audio/mpeg"></audio>
<script type="text/javascript" src="app.js"></script>
</body>
</html>