12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!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-15">
- </head>
- <body>
-
- <h1>Font tags with absolute size</h1>
-
- <font size="1">size=1</font>
- <font size="2">size=2</font>
- <font size="3">size=3</font>
- <font size="4">size=4</font>
- <font size="5">size=5</font>
- <font size="6">size=6</font>
- <font size="7">size=7</font>
-
- <h1>Span tags with absolute CSS size</h1>
-
- <span style="font-size: 8pt;">size=1</span>
- <span style="font-size: 10pt;">size=2</span>
- <span style="font-size: 12pt;">size=3</span>
- <span style="font-size: 14pt;">size=4</span>
- <span style="font-size: 18pt;">size=5</span>
- <span style="font-size: 24pt;">size=6</span>
- <span style="font-size: 34pt;">size=7</span>
-
- <h1>Font tags with relative size</h1>
-
- <font size="-4">size=-4</font>
- <font size="-3">size=-3</font>
- <font size="-2">size=-2</font>
- <font size="-1">size=-1</font>
- <font size="+1">size=+1</font>
- <font size="+2">size=+2</font>
- <font size="+3">size=+3</font>
- <font size="+4">size=+4</font>
-
- <h1>Span tags with relative CSS size</h1>
-
- <span style="font-size: 0.5em;">size=-4</span>
- <span style="font-size: 0.6em;">size=-3</span>
- <span style="font-size: 0.7em;">size=-2</span>
- <span style="font-size: 0.9em;">size=-1</span>
- <span style="font-size: 1.2em;">size=+1</span>
- <span style="font-size: 1.6em;">size=+2</span>
- <span style="font-size: 2.0em;">size=+3</span>
- <span style="font-size: 2.8em;">size=+4</span>
-
- <h1>Nested font tags</h1>
-
- <font size="2">size=2
- <font size="4">size=4
- <font size="2">size=2
- <font size="4">size=4
- <font size="2">size=2
- <font size="4">size=4
- <font size="2">size=2
- <font size="4">size=4
- </font>
- </font>
- </font>
- </font>
- </font>
- </font>
- </font>
- </font>
-
- </body>
- </html>
|