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