Files
docker-test-image/static-html-directory/about.html
Gregory Hendrickson 0ff367ca99 update script to handle menu
update htmls
2023-06-09 17:45:25 -07:00

38 lines
979 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - My Profile</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="dark-grey-purple">
<header>
<div class="container">
<h1>My Profile</h1>
<div id="menu-toggle"></div>
<nav id="main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>
Hello! My name is Gregory, and I have a passion for coffee, dogs, sports cars, computer servers, and automation.
</p>
<!-- Rest of the About Me content -->
</section>
</main>
<script src="script.js"></script>
</body>
</html>