testsAndMisc/PYTHON/extractLinks/tests/sample2.html

16 lines
442 B
HTML

<!doctype html>
<html>
<head>
<title>Sample 2</title>
</head>
<body>
<p>Links:</p>
<ul>
<li><a href="https://sub.domain.co.uk/path?x=1#y">Subdomain</a></li>
<li><a href="http://example.com:8080/with-port">Port</a></li>
<li><a href="//no-scheme.com/should-be-ignored">Protocol-relative (ignored)</a></li>
<li><a href="ftp://not-supported.com/ignore">FTP (ignored)</a></li>
</ul>
</body>
</html>