blob: 21ae21ebd9d792a3d7594f659bd7c4ca9d5f2781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<style>
table { background: green }
td { color: white }
</style>
</head>
<body>
<table>
<tr>
<td>Three</td>
</tr>
</table>
</body>
</html>
|