-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtable.html
More file actions
56 lines (53 loc) · 1.76 KB
/
table.html
File metadata and controls
56 lines (53 loc) · 1.76 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>DMX Controller</title>
<style>
td {
text-align:center;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript" src="light.js"></script>
</head>
<body>
<div align="center">
<form action="index.php" method="GET">
<p>
<label for="cmd"></label>
<input type="text" name="cmd" id="cmd" />
</p>
<table width="200" border="1">
<tr>
<td><input name="1" type="button" value="1" /></td>
<td><input name="2" type="button" value="2" /></td>
<td><input name="3" type="button" value="3" /></td>
</tr>
<tr>
<td><input name="4" type="button" value="4" /></td>
<td><input name="5" type="button" value="5" /></td>
<td><input name="6" type="button" value="6" /></td>
</tr>
<tr>
<td><input name="7" type="button" value="7" /></td>
<td><input name="8" type="button" value="8" /></td>
<td><input name="9" type="button" value="9" /></td>
</tr>
</table>
<table width="200" border="1">
<tr>
<td>
<input type="button" name="At" id="At" value="@" />
</td>
<td><input type="button" name="0" id="0" value="0" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit" value="GO"></td>
</tr>
</table>
<p> </p>
</form>
</div>
</body>
</html>