-
Notifications
You must be signed in to change notification settings - Fork 0
/
basicTable.html
39 lines (39 loc) · 1.09 KB
/
basicTable.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Basic Tables</title>
<style type="text/css">
th, td { padding: 8px; }
td { background-color: #CFCFCF; }
table { border: 1px; border-collapse: collapse; border-style: dashed; border-color: #9D9D9D; }
</style>
</head>
<body>
<h1>Basic Tables</h1>
<h2>XHTML Super Heroes</h2>
<table>
<tr>
<th>Hero</th>
<th>Power</th>
<th>Nemesis</th>
</tr>
<tr>
<td>The XMLator</td>
<td>Standards Compliance</td>
<td>Sloppy Code Boy</td>
</tr>
<tr>
<td>Captain CSS</td>
<td>Super-layout</td>
<td>Lord Deprecated</td>
</tr>
<tr>
<td>Browser Woman</td>
<td>Mega-Compatibility</td>
<td>Ugly Code Monster</td>
</tr>
</table>
</body>
</html>