summaryrefslogtreecommitdiff
path: root/tests/ref/html/heading-html-basic.html
blob: 69a1d01722d4213b7a8c822e25aa4b69d111db36 (plain) (blame)
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
  <body>
    <h2>
      Level 1
    </h2>
    <h3>
      Level 2
    </h3>
    <h4>
      Level 3
    </h4>
    <h5>
      Level 4
    </h5>
    <h6>
      Level 5
    </h6>
    <div role="heading" aria-level="7">
      Level 6
    </div>
    <div role="heading" aria-level="8">
      Level 7
    </div>
  </body>
</html>