File: tables.html

package info (click to toggle)
xhtml2pdf 0.2.17%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,412 kB
  • sloc: python: 12,740; makefile: 247; xml: 24
file content (37 lines) | stat: -rw-r--r-- 706 bytes parent folder | download
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Font and Styles</title>
<style type="text/css">
p.comment {
	background: yellow;
}
</style>
</head>
<body>
<p class="comment">Simple table: </p>
<table width="100%" border="1" cellspacing="0" cellpadding="5">
  <tr>
    <td>a</td>
    <td>b</td>
    <td>c</td>
    <td>d</td>
  </tr>
  <tr>
    <td rowspan="2">ei</td>
    <td colspan="3">fgh</td>
  </tr>
  <tr>
    <td rowspan="2">jn</td>
    <td>k</td>
    <td>l</td>
  </tr>
  <tr>
    <td>m</td>
    <td colspan="2">op</td>
  </tr>
</table>
<p>&nbsp;</p>
</body>
</html>