1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
header text
<html><head> </head>
<body>
<h1> heading </h1>
<p>
first paragraph of text;
includes multiple spaces and newlines,
<em> emphasized text </em>and
<strong> strong text </strong>
</p>
<p>
<center>starting with an evil center tag,</center>
this very long second paragraph contains some special characters (including a simple space...):
&; <>"=/ plus a big gap and two unicode escapes
(decimal: ¡ and hexal: ¿)
but also an anchor em<a name="anchor" href="">bed</a>ded inside a word
(this anchor also is the only tag with parameters);
and finally a blank row <br /> (a single tag)
</p>
</body>
</html>
|