aboutsummaryrefslogtreecommitdiff
path: root/exampleData/sites/testColorRules.html
blob: 58aa7ce8e59d19ef28d42cbe9df8099ccdebb3cd (plain)
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
47
48
49
50
51
<!DOCTYPE html>
<html>

  <title>Test Color Rules</title>
  <head>

    <!-- Simple embedded style sheet -->
    <style type="text/css">
      #nav-left { color: #C3C2C5; }
      #nav-left a:hover { color: #B4B4B4; }
      #nav-left a:active { color: #4E4E4E; }
    </style>
  </head>

<body>

  <div id='nav-left'>
    Left Navigation
    <ul>
      <li><a href="#link1">A link</a></li>
      <li><a href="#link2">Another link</a></li>
      <li><a href="#link3">Yet a third link</a></li>
    </ul>
  </div>

  <div id='main'>
    <h1>Color tests</h1>
    <p style="color: #FFFFF1">This (almost) is an FF paragraph.</p>
    <p style="color: #CCCCCC">This is an CC paragraph.</p>
    <p style="color: #3D3D3D">This is an 3D paragraph.</p>
    <p style="color: #000000">This is an 00 paragraph.</p>
    <hr>
    <p style="color: #3D3D3D; background-color: #C2C2C2">This is a paragraph with OK bg color</p>
    <p style="color: #3D3D3D; background-color: #CCCC00">This is a paragraph with BAD bg color</p>
    <hr>
    <div id="content" style="color: #F7F7F7">
      This is a DIV ID=content
    </div>
    random text here
    <div id="content" style="color: #C7C7C7">
      This is a DIV ID=content with bad colors!
    </div>
  </div>

  <a name="link1">link 1 ref</a>
  <a name="link2">link 2 ref</a>
  <a name="link3">link 3 ref</a>
</body>
</html>