55 lines
2.0 KiB
HTML
55 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>A link to use hints on</title>
|
|
<style>
|
|
body > p {border: 1px solid silver;}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
Simple test:
|
|
<a href="/data/hello.txt">Follow me!</a>
|
|
</p>
|
|
|
|
<p>
|
|
Test <code><a></code> containing formatting tags (<code><br></code>, <code><em></code>, <code><strong></code>, <code><i></code>, <code><b></code>):
|
|
<br>
|
|
<a href="/data/hello2.txt">
|
|
link 2<br>
|
|
<em>link 2</em><br>
|
|
<strong>link 2</strong><br>
|
|
<i>link 2</i><br>
|
|
<b>link 2</b><br>
|
|
link 2
|
|
</a>
|
|
</p>
|
|
|
|
<p>
|
|
Test <code><a></code> containing <code><span style="display: block;"></code>:
|
|
<a href="/data/hello3.txt">
|
|
<span style="display: block;">
|
|
link 3
|
|
</span>
|
|
</a>
|
|
</p>
|
|
|
|
<p>
|
|
Test <code><a></code> containing <code><span style="display: table;"></code>:
|
|
<a href="/data/hello4.txt">
|
|
<span style="display: table;">
|
|
link 4
|
|
</span>
|
|
</a>
|
|
</p>
|
|
|
|
<div style="border: 1px solid silver;">
|
|
<p>Test links wrapped across multiple lines:</p>
|
|
<div style="width: 20em;">
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis <a href="/data/hello.txt">nostrud exercitation</a> ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|