Files

25 lines
691 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Local Site — Deepest</title>
<link rel="stylesheet" href="../../../assets/site.css">
</head>
<body>
<header>
<h1>Deepest Page</h1>
<nav>
<a href="../../../index.html">Home (../../../)</a>
<a href="../../page.html">Subdir page (../../)</a>
</nav>
</header>
<main>
<p>This page is 3 directories deep. All links and assets use
<code>../../../</code> to climb back to the root.</p>
<img src="../../../assets/pic.svg" alt="pic via ../../../" width="200">
<p>Current URL: <span id="url"></span></p>
</main>
<script>document.getElementById('url').textContent = location.href;</script>
</body>
</html>