View difference between Paste ID: ivCf5BMT and BCy64xfj
SHOW: | | - or go back to the newest paste.
1
<!DOCTYPE html>
2
<html>
3
	<head>
4
		<title>AlphabetTable</title>
5
	</head>
6
	<table cellpadding="4" border="1">
7
		<tr>
8
			<th colspan="3" width="100px">Title goes here</th>
9
			<th width="20%">A</th>
10-
			<th width="20%">B</>
10+
			<th width="20%">&nbsp;&nbsp;&nbsp;&nbsp;B</>
11
		</tr>
12
		<tr>
13
			<th rowspan="3">C</th>
14
			<th>D</th>
15
			<th>E</th>
16
			<th>F</th>
17-
			<th>G</th>
17+
			<th>&nbsp;&nbsp;&nbsp;&nbsp;G</th>
18
		</tr>
19
		<tr>
20
			<th>H</th>
21
			<th colspan="2">I</th>
22
			<th rowspan="2" style="vertical-align: bottom;"><br/>&nbsp;&nbsp;&nbsp;&nbsp;J</th>
23
		</tr>
24
		<tr>
25
			<th>K</th>
26
			<th>L</th>
27
			<th>M</th>
28
		</tr>
29
		<tr>
30
			<th>N</th>
31
			<th colspan="4">O</th>
32
		</tr>
33
	</table>
34
</html>