21 lines
584 B
HTML
21 lines
584 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Local Site — Missing Page Placeholder</title>
|
|
<link rel="stylesheet" href="assets/site.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Missing Page Placeholder</h1>
|
|
<nav><a href="index.html">Home</a></nav>
|
|
</header>
|
|
<main>
|
|
<p>This page exists. The home page link labeled "Missing Page" points
|
|
to <code>404.html</code>, which is this file — so it is not actually
|
|
missing. To test a real missing page, click
|
|
<a href="does-not-exist.html">this link to a truly missing page</a>.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|