Some Basic Information
Change /path/to/page
to the absolute path to your main web
directory (probably public_html) in your file system
Put your CSS in the a directory named CSS,
and your scripts in a directory named SCRIPTS.
Depending on your server setup you might need to use an absolute location
on the Internet for your <link>
tags.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Typical Page</title>
<link rel="stylesheet" href="/CSS/pageContent0823.css">
<link rel="stylesheet" href="/CSS/menus.css">
<link rel="stylesheet" href="/CSS/sunburst.css">
<link href='https://fonts.googleapis.com/css?family=EB Garamond' rel='stylesheet'>
<script src="/SCRIPTS/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<header>
<h1>Typical Page</h1>
<?php include '/path/to/page/SCRIPTS/menus.php'?>
</header>
<div class="container">
<nav>
<div class="nav-menu">
<?php include '/path/to/page/SCRIPTS/navigation.php'?>
</div>
</nav>
<main>
<h2 class="subhead">The Entrails and the Details</h2>
</main>
<footer>
<p>All materials Copyright ©2023, John M. Morrison</p>
</footer>
</div>
</body>
</html>