Files
sovereign_browser/tests/local-site/about.html
T

35 lines
876 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Local Site — About</title>
<link rel="stylesheet" href="assets/site.css">
</head>
<body>
<header>
<h1>About</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="gallery.html">Gallery</a>
<a href="data.html">Data</a>
</nav>
</header>
<main>
<p>This is the About page. It links back to the
<a href="index.html">home page</a> and to a
<a href="subdir/page.html">subdirectory page</a>.</p>
<h2>Nested relative link</h2>
<p>From here, a link to a deeply nested page:
<a href="subdir/deep/deeper/deepest.html">Deepest page</a>.</p>
<h2>Anchor on this page</h2>
<p>Jump to <a href="#bottom">the bottom</a>.</p>
<p id="bottom">This is the bottom of the About page.</p>
</main>
</body>
</html>