mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 16:43:05 +02:00
16 lines
442 B
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>
|