forked from xhtml2pdf/xhtml2pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-syntax.html
51 lines (48 loc) · 939 Bytes
/
test-syntax.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
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Das ist der Titel</title>
<style type="text/css">
body {
color: #0f0;
font-family: Helvetica;
}
b {
color: red;
font-size: 8px;
}
.b {
color: blue;
}
#b {
color: yellow;
}
</style>
</head>
<body>
<p>
Lorem <span style=display:none">hidden</span> <b>bold=red</b> normal <em style="color:silver;">silver<b class=b>blue</b> silver</em> orange
<!-- a href="http://www.htmltopdf.org" color="blue">dolor</a -->
<span class=b id=b>yellow</span> <sub>amet</sub> <u>nochwas</u> normal
<p>
Weiterer <b class=b id=b>sit</b> Absatz
<style type="text/css">
body {
color: #f0f;
}
</style>
<div>
Anfang DIV 1
<div>
AD2
<p>
Test
<p>
ED2
</div>
Ende DIV 2
</div>
</body>
</html>