File: test6.htm

package info (click to toggle)
litehtml 0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 7,928 kB
  • sloc: ansic: 31,385; cpp: 27,328; makefile: 9
file content (29 lines) | stat: -rw-r--r-- 542 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
<style type="text/css">
a
{
    text-decoration: none;
}
a:hover
{
    text-decoration: underline;
}
</style>
<body>
    <a href="hello">
        oops
        <span style="background-color: lightcoral;">
            Hello
            <ul>
                <li>item1</li>
                <li>item2</li>
                <li>item3</li>
            </ul>
            hhh
            <ul>
                <li>item1-1</li>
                <li>item1-2</li>
                <li>item1-3</li>
            </ul>
            World</span>
    </a>
</body>