1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

content / test / data / accessibility / html / text-colors-and-styles.html [blame]

<html>
<head>
  <style>
    h1 { font-size: 16px; transform: scale(2); }
    h2 { font: italic bold 12px Courier; }
  </style>
</head>
<body>
  <p style="color:#123456;background:#abcdef">color</p>
  <h1>text size</h1>
  <h2>text style</h2>
  <p><strong>strong</strong></p>
  <i>italic</i>
  <b>bold</b>
</body>
</html>