summaryrefslogtreecommitdiff
path: root/tests/ref/html/list-par.html
blob: 7c747ff4445fb2692a49d0eb7d613d6e0e1bff10 (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
31
32
33
34
35
36
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
  </head>
  <body>
    <div>
      <ul>
        <li>Hello</li>
        <li>World</li>
      </ul>
    </div>
    <div>
      <ul>
        <li>
          <p>Hello</p>
          <p>From</p>
        </li>
        <li>World</li>
      </ul>
    </div>
    <div>
      <ul>
        <li>
          <p>Hello</p>
          <p>From</p>
          <p>The</p>
        </li>
        <li>
          <p>World</p>
        </li>
      </ul>
    </div>
  </body>
</html>