説明なし

quirks_font_tag.html 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
  5. </head>
  6. <body>
  7. <h1>Font tags with absolute size</h1>
  8. <font size="1">size=1</font>
  9. <font size="2">size=2</font>
  10. <font size="3">size=3</font>
  11. <font size="4">size=4</font>
  12. <font size="5">size=5</font>
  13. <font size="6">size=6</font>
  14. <font size="7">size=7</font>
  15. <h1>Span tags with absolute CSS size</h1>
  16. <span style="font-size: 8pt;">size=1</span>
  17. <span style="font-size: 10pt;">size=2</span>
  18. <span style="font-size: 12pt;">size=3</span>
  19. <span style="font-size: 14pt;">size=4</span>
  20. <span style="font-size: 18pt;">size=5</span>
  21. <span style="font-size: 24pt;">size=6</span>
  22. <span style="font-size: 34pt;">size=7</span>
  23. <h1>Font tags with relative size</h1>
  24. <font size="-4">size=-4</font>
  25. <font size="-3">size=-3</font>
  26. <font size="-2">size=-2</font>
  27. <font size="-1">size=-1</font>
  28. <font size="+1">size=+1</font>
  29. <font size="+2">size=+2</font>
  30. <font size="+3">size=+3</font>
  31. <font size="+4">size=+4</font>
  32. <h1>Span tags with relative CSS size</h1>
  33. <span style="font-size: 0.5em;">size=-4</span>
  34. <span style="font-size: 0.6em;">size=-3</span>
  35. <span style="font-size: 0.7em;">size=-2</span>
  36. <span style="font-size: 0.9em;">size=-1</span>
  37. <span style="font-size: 1.2em;">size=+1</span>
  38. <span style="font-size: 1.6em;">size=+2</span>
  39. <span style="font-size: 2.0em;">size=+3</span>
  40. <span style="font-size: 2.8em;">size=+4</span>
  41. <h1>Nested font tags</h1>
  42. <font size="2">size=2
  43. <font size="4">size=4
  44. <font size="2">size=2
  45. <font size="4">size=4
  46. <font size="2">size=2
  47. <font size="4">size=4
  48. <font size="2">size=2
  49. <font size="4">size=4
  50. </font>
  51. </font>
  52. </font>
  53. </font>
  54. </font>
  55. </font>
  56. </font>
  57. </font>
  58. </body>
  59. </html>