File: t-a.html

package info (click to toggle)
html2wml 0.4.11%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 816 kB
  • sloc: perl: 2,380; ansic: 56; makefile: 34; sh: 4
file content (22 lines) | stat: -rw-r--r-- 506 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
<html>
<head>
<title>Links</title>
</head>

<body>
<h1>Links</h1>

<a href="test">normal link</a><br>


<a href="test"><b>link with a bold tag inside</b></a><br>
<b><a href="test">link inside a bold tag</a></b><br>
<b><a href="test">link inside a bold tag but end tags are inverted</b></a><br>


<a href="test"><p>link with a paragraph tag inside</p></a>
<p><a href="test">link inside a paragraph tag</a></p>
<p><a href="test">link inside a paragraph tag but end tags are inverted</p></a>

</body>
</html>