File: nested-stuff.html

package info (click to toggle)
orca 49.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 53,532 kB
  • sloc: python: 98,331; javascript: 281; sh: 64; xml: 27; makefile: 5
file content (44 lines) | stat: -rw-r--r-- 856 bytes parent folder | download | duplicates (4)
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
<html>
<head>
<style>
ul { list-style: none; }
blockquote { border-left: 5px solid grey; padding-left: 10px; margin-left:5px; }
</style>
</head>
<body>
<p>Nest all the things!</p>
<ul>
  <li>Hello world</li>
  <li>
    <ul>
      <li>Nested item</li>
      <li>
        <ul>
          <li>Even-more-nested item</li>
          <li>
            <ul>
              <li>Is this seriously necessary?</li>
            </ul>
          </li>
        </ul>
      </li>
    </ul>
  </li>
</ul>
<p>Because why not?</p>
<blockquote>
  <p>Here's a quote</p>
  <blockquote>
      <p>A nested quote</p>
       <blockquote>
          <p>Containing a quote</p>
          <blockquote>
             <p>Which contains a quote</p>
          </blockquote>
       </blockquote>
  </blockquote>
  <p>Just... one... more... thing!</p>
</blockquote>
<p>The end.</p>
</body>
</html>