Files
pathduck.github.io/test/visited-links/index.html
T
2025-06-01 11:59:11 +02:00

29 lines
784 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<title>Visited Links Test</title>
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
</head>
<style>
a:visited {color: salmon;}
body {font-weight: bolder;}
</style>
<body>
<h2>
<a href="success.html">SUBPAGE</a><br>
<a href="https://pathduck.github.io">GITHUB.IO</a><br>
<a href="https://github.com">GITHUB.COM</a><br>
<a href="https://www.youtube.com/">YOUTUBE.COM</a><br>
<a href="https://vivaldi.com/">VIVALDI.COM</a><br>
<a href="https://vivaldi.net/">VIVALDI.NET</a><br>
<a href="https://www.facebook.com/">FAKEBOOK.COM</a><br>
<a href="https://www.bbc.com/news">BBC NEWS</a><br>
</h2>
<h3>IFRAME<h3>
<iframe height="300px" src="https://stian.sdf.org/test/visited-links/frame.html"></iframe>
</body>
</html>