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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html><head> </head>
<body>
<p >
first paragraph of text;
includes multiple spaces and
newlines,
<em> emphasized text </em>and
<strong> strong text </strong>
</p >
<p>
<div id="somediv">starting with an (invalid) div element,</div>
this very long second paragraph contains some special characters:
;>"=/'-![? and some entities: <>&"' (including an unknown one: &someentity;)
plus a big gap and two character references
(decimal: ¡ and hexal: ¿),
but also an anchor em<a title="test-title: &; <>"=/'-![?"
name='anchor' href = "" >bed</a>ded inside a word,
<!-- some comment with all possible special characters ;>"=/'-![?<& in it -->
<? a fake? processing instruction??>
a <![CDATA[CDATA section with ]], >, >> and ]>, and of course '&' and '<' in it]]>,
and finally a blank row <br /> (a single tag), and a ruler: <hr class='someclass'/> (with attributes)
</p>
<p>
<pre>
the third paragraph
is preformatted
</pre>
</p>
<p>the last simply ends the page</p>
</body>
</html>
|