File: simple.html

package info (click to toggle)
liblayout 0.2.10-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,332 kB
  • sloc: java: 51,125; xml: 138; makefile: 17
file content (82 lines) | stat: -rw-r--r-- 1,732 bytes parent folder | download | duplicates (5)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<head>
  <style type="text/css">

    p {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12pt;
      line-height: 12pt
    }

    p:first-letter {
      font-size: 200%;
      font-style: italic;
      font-weight: bold;
      float: left
    }

    span {
      text-transform: uppercase
    }

    div.test {
      font-style: normal;
      line-height: 110%;
      background-color: blue;
    }

    li + li {
      font-style: italic;
    }

    span > div {
      font-style:italic;
    }
  </style>
</head>

<body>
<h1>
  A simple test file.
</h1>
<!--
<div class="test">
  asdasd ada asda sdwak jafjepoi fsadjf afsadfha sdhfe
  <div style="background-color:white;">Breaking news Breaking news Breaking news Breaking news Breaking news </div>
</div>
<div class="test">
  adshfaehfoweh aasfdlah asdfh afal fa alfaldhfa afaf
  adfk alsdw9 <span style="font-size:55pt">Here?</span><br />
  avcal adfa dfa dfa f aah
</div>

<p><span>The first ...</span>
  The first
  few words of an article in the Economist.
</p>

<ul>
  <li>First Silbling</li>
  <li>Second Silbling</li>
</ul>

<div>T1<span style="color:red">T2<div>T3</div>T4</span>T5</div>
<hr />
<p style="font-size: 14pt;">
  A funny test <span style="font-size: 1ex;">More text to come</span> not so funny.
</p>
-->
<div>
  aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa
  <span style="color: green; padding-top: 20pt">
    aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa
    <div style="border: 1pt black solid">
      aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa
    </div>
    aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa
  </span>
  aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa aaaa
</div>

</body>
</html>