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
|
<html>
<body>
<h1>This is a test of some critical font changes </h1>
<b><font size="+1">M</font>ore <font size="+1">F</font>ontnews</b>
<p>
<font color="blue">This is text in the color blue with a
<a href="#dummy">dummy anchor</a> and some more text after it.</font>
<p>
Now follows a font change with an encapsulated anchor:
<font size="+2">D</font><a href="#dummy">ummy</a> anchor.
<p>
Multiple font changes within an anchor:
<a href="#dummy"><font size="+1">M</font>ore
<font size="+1">F</font>ontnews</a>
<p>
Multiple font changes within an anchor and underlining:
<u><a href="#dummy"><font size="+1">M</font>ore
<font size="+1">F</font>ontnews</a></u>
<p>
Multiple font changes within an anchor and strikeout:
<strike><a href="#dummy"><font size="+1">MOR</font>e
<font size="+1">F</font>ontnews</a></strike>
<p>
Multiple font changes and underlining:
<u><font size="+1">M</font>ore <font size="+1">F</font>ontnews</u>
<p>
Multiple font changes and strikeout:
<strike><font size="+1">M</font>ore <font size="+1">F</font>ontnews</strike>
<p>
Follows multiple font font changes:
<font size="+1">W</font>ith<b>an</b>en<font color="red">capsulated</font>anchor.
and some more bogus text after the this stupendously large word.
<p>
</body>
</html>
|