-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (56 loc) · 1.51 KB
/
index.html
File metadata and controls
59 lines (56 loc) · 1.51 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
57
58
59
<!DOCTYPE html>
<head>
<title>Optimus Color Scheme Table</title>
<style>
table {
border-collapse: collapse;
}
td,
th {
border: 1px solid black;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
td,
th {
margin: 0px;
padding: 2px;
}
</style>
</head>
<table>
<tr>
<td style="text-align: center; border:0px;" colspan="4"><img src="optimus.jpg" alt="Optimus Prime"
style="width:300px;height:500px" /></td>
</tr>
<th colspan="4">Optimus Prime</th>
<tr>
<td style="background-color:hsl(0,100%,50%,1.0);">
Red</td>
<td style="color:white;background-color:hsl(240,100%,50%,1.0);">
Blue</td>
<td style="color:white;background-color:hsl(0,0%,0%,1.0);">
Black</td>
<td style="color:black;background-color:hsl(0,0%,75.3%,1.0);">
Silver</td>
</tr>
<tbody>
<tr>
<td>Hex #FF0000</td>
<td>Hex #0000FF</td>
<td>Hex #000000</td>
<td>Hex #C0C0C0</td>
</tr>
<tr>
<td>rgb (255,0,0)</td>
<td>rgb (0,0,255)</td>
<td>rgb (8,1,1)</td>
<td>rgb (192,192,192)</td>
</tr>
<tr>
<td>hsl(0,100%,50%,1.0)</td>
<td>hsl(240,100%,50%,1.0)</td>
<td>hsl(0,0%,0%,0)</td>
<td>hsl(0,0%,75.3%,1.0)</td>
</tr>
</tbody>
</table>