Newer
Older
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
87
88
89
90
91
92
93
94
95
96
const char MAIN_page[] PROGMEM = R"=====(
<html>
<head>
<title>LEMUR Paper Boat</title>
<style>
h2 {
color: orange;
}
h3 {
color: #2274AF;
}
body {
background-color: black;
text-align: center;
color: white;
font-family: Arial, Helvetica, sans-serif;
}
.header{
padding: 20px;
text-align: center;
background: black;
color: white;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button1 {
background-color: red;
}
table, th, td {
border: 1px solid black;
padding: 10px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: black;
color: white;
text-align: center;
}
</style>
</head>
<div class="header">
<h1>Paper Boat</h1>
</div>
<body>
<button class="button">ON</button>
<button class="button button1">OFF</button>
<div class="table">
<table align="center">
<tr>
<th>↖</th>
<th>↑</th>
<th>↗</th>
</tr>
<tr>
<td>←</td>
<td><img src="https://s7d2.scene7.com/is/image/Fathead/lgo_ncaa_ucla_bruins?layer=comp&fit=constrain&hei=300&wid=300&fmt=png-alpha&qlt=95,0&op_sharpen=1&resMode=bicub&op_usm=0.0,0.0,0,0&iccEmbed=0" alt="bruin" style="width:200px"></td>
<td>→</th>
</tr>
<tr>
<td>↙</td>
<td>↓</td>
<td>↘</td>
</tr>
</table>
</div>
<div class="footer">
<h2>LEMUR</h2>
<h4>The Laboratory of Embedded Machines and Ubiquitous Robots</h4>
<h3>UCLA Electrical Engineering</h3>
</div>
</body>
</html>
)=====";