-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
83 lines (81 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="5">
<title></title>
<link rel="stylesheet" href="styles/w3.css">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/styles-icons.css">
<script src = "scripts/main.js" type="text/javascript"> </script>
<script src = "scripts/jquery.js" type="text/javascript"> </script>
<script src = "scripts/jquery-ui.js" type="text/javascript"> </script>
</head>
<body>
<div class="container">
<div class="container-header">
<button id="openNav">☰</button>
<h1>Market Place Manager</h1>
</div>
<div class="container-lights">
<table>
<tr>
<td>1</td>
<td><span id="dot(1,1)" class ="black"></span></td>
<td><span id="dot(1,2)" class ="black"></span></td>
<td><span id="dot(1,3)" class ="black"></span></td>
</tr>
<tr>
<td>2</td>
<td><span id="dot(2,1)" class ="black"></span></td>
<td><span id="dot(2,2)" class ="black"></span></td>
<td><span id="dot(2,3)" class ="black"></span></td>
</tr>
<tr>
<td>3</td>
<td><span id="dot(3,1)" class ="black"></span></td>
<td><span id="dot(3,2)" class ="black"></span></td>
<td><span id="dot(3,3)" class ="black"></span></td>
</tr>
<tr>
<td>4</td>
<td><span id="dot(4,1)" class ="black"></span></td>
<td><span id="dot(4,2)" class ="black"></span></td>
<td><span id="dot(4,3)" class ="black"></span></td>
</tr>
<tr>
<td>5</td>
<td><span id="dot(5,1)" class ="black"></span></td>
<td><span id="dot(5,2)" class ="black"></span></td>
<td><span id="dot(5,3)" class ="black"></span></td>
</tr>
<tr>
<td>6</td>
<td><span id="dot(6,1)" class ="black"></span></td>
<td><span id="dot(6,2)" class ="black"></span></td>
<td><span id="dot(6,3)" class ="black"></span></td>
</tr>
<tr>
<td>7</td>
<td><span id="dot(7,1)" class ="black"></span></td>
<td><span id="dot(7,2)" class ="black"></span></td>
<td><span id="dot(7,3)" class ="black"></span></td>
</tr>
<tr>
<td>8</td>
<td><span id="dot(8,1)" class ="black"></span></td>
<td><span id="dot(8,2)" class ="black"></span></td>
<td><span id="dot(8,3)" class ="black"></span></td>
</tr>
<tr>
<td>9</td>
<td><span id="dot(9,1)" class ="black"></span></td>
<td><span id="dot(9,2)" class ="black"></span></td>
<td><span id="dot(9,3)" class ="black"></span></td>
</tr>
</table>
<script type="text/javascript"> loadDoc();</script>
</div>
</div>
</body>
</html>