-
Notifications
You must be signed in to change notification settings - Fork 0
/
webtest.html
65 lines (65 loc) · 2.29 KB
/
webtest.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
<!DOCTYPE html>
<html>
<head>
<title>4WD Robot Control</title>
</head>
<body>
<center><b>
<table>
<tr>
<td>
<form action="./fast">
<input type="submit" value="Faster" style="background-color: #eb9234; border-radius: 50px; height:175px; width:120px; font-weight: bold; border: none; color: blue; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
<td>
<form action="./forward">
<input type="submit" value="Forward" style="background-color: #04AA6D; border-radius: 15px; height:120px; width:175px; border: none; color: white; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
<td>
<form action="./null">
<input type="submit" value="" style="background-color: #FFFFFF; border-radius: 15px; height:120px; width:120px; border: none; color: white; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
</tr>
</table>
<table>
<tr>
<td><form action="./left">
<input type="submit" value="Left" style="background-color: #04AA6D; border-radius: 15px; height:120px; width:175px; border: none; color: white; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
<td>
<form action="./stop">
<input type="submit" value="Stop" style="background-color: #FF0000; border-radius: 50px; height:150px; width:150px; font-weight: bold; border: none; color: white; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
<td>
<form action="./right">
<input type="submit" value="Right" style="background-color: #04AA6D; border-radius: 15px; height:120px; width:175px; border: none; color: white; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
</tr>
</table>
<table>
<tr>
<td>
<form action="./slow">
<input type="submit" value="Slower" style="background-color: #eb9234; border-radius: 50px; height:175px; width:120px; font-weight: bold; border: none; color: blue; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
<td>
<form action="./back">
<input type="submit" value="Back" style="background-color: #04AA6D; border-radius: 15px; height:120px; width:175px; border: none; color: white; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
<td>
<form action="./null">
<input type="submit" value="" style="background-color: #FFFFFF; border-radius: 15px; height:120px; width:120px; border: none; color: white; padding: 16px 24px; margin: 4px 2px" />
</form>
</td>
</tr>
</table>
</body>
</html>