aboutsummaryrefslogtreecommitdiffstats
path: root/test/render/test6.htm
blob: cd5276464e95fd630289c354d3905e90e274658c (plain)
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>