-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
49 lines (43 loc) · 1.25 KB
/
home.html
File metadata and controls
49 lines (43 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="home.js"></script>
<title>CIT 595 Group 20 Page</title>
</head>
<body>
<center><h1>Welcome to our page</h1></center>
<div id="1"></div>
<div id="2"></div>
<div id="3"></div>
<div id="4"></div>
<table>
<tr>
<th>Color Control</th>
<th>Temperature Type</th>
<th>7-Segment Display</th>
<th>Activity</th>
</tr>
<tr>
<td>
<button value="r">Red</button>
<button value="g">Green</button>
<button value="b">Blue</button>
</td>
<td>
<button value="f">Fahrenheit</button>
<button value="c">Celsius</button>
</td>
<td>
<button value="k">[ ][ ]</button>
<button value="l">LOL</button>
<button value="s">SOS</button>
</td>
<td>
<button value="w">Active</button>
<button value="q">Standby</button>
</td>
</tr>
</table>
</body>
</html>