I’ve created a few front end screens that have no back end support, as yet. Some of them will need additional code when I get around to back end coding, no doubt. Nothing is hosted on the web yet, but I was wondering how I might best go about testing to be sure they don’t get corrupted as I continue to develop my website. All of them were committed in git as I finished them and have been updated in git when I’ve made changes.
Can anyone suggest how to go about setting up a test? All of the files are in a root folder on my G: drive. I tried to create a menu screen but I can’t get the links I coded to work. I ran my HTML through and online checker/delinter and found not problems. I’ve searched and I’ve re-read lesson modules until I can no longer see the problem with fresh eyes. My HTML for the menu is below.
G:–
|______A-Projects
|
|________BiographyPage
|________Lineage
|________DataEntry
|______Individuals
|______Marriages
|______Offspring
|______Deaths
|______Images
<html lang="en">
<head> <!-- BEGINNING OF HEAD SECTION -->
<meta charset="UTF-8">
<meta name="description" content="Hutchins Clan Biography">
<meta name="keywords" content="HTML, CSS, JavaScript, Hutchins, biography">
<meta name="author" content="Robert Hutchins">
<meta http-equiv="refresh" content="30">
<title>Main Menu</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Birthstone">
<link
rel="stylesheet"
href="menu.css">
<style>
/* ALL STYLING IS IN EXTERNAL CSS FILES; SEE LINKS IN HEAD SECTION */
</style>
<!--All style selectors placed in one CSS File -->
</head> <!-- END OF HEAD SECTION -->
<body> <!-- BEGINNING BODY SECTION
(PAGE CONTENT) -->
<div class="line-page"><!-- Defines page
border and background -->
<div class="masthead">
<div class="masthead-line1">
The Hutchins Clan
</div>
<div class="masthead-line2">
Main Menu
</div>
</div> <!-- END of .masthead-->
<div class="menu-frame">
<div class="menu">
<a href="/biographypage/index.html">Biography Page
</a><br>
<a href="/lineage/index.html">Lineage Page
</a><br>
<br>Data Entry Screens:<br>
<a href="/dataentry/index.html">Individual Entry
</a><br>
<a href="/dataentry/marriage.html">Marriage Entry
</a><br>
<a href="/dataentry/offspring.html">Offspring Entry
</a><br>
<a href="/dataentry/death.html">Death Entry
</a><br>
<a href="/dataentry/photodrop.html">Image Entry
</a><br>
</div>
</div> <!-- End of .menu -->
</div>
</body> <!-- END BODY SECTION
(PAGE CONTENT) -->
</html>