My-website/index.html
2024-11-07 10:43:13 -07:00

29 lines
707 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Project Website</title>
<link rel="stylesheet" href="pages/style.css">
</head>
<body>
<!-- Include the Navbar -->
<div id="navbar"></div>
<script>
// Load the navbar
fetch('pages/navbar.html')
.then(response => response.text())
.then(data => {
document.getElementById('navbar').innerHTML = data;
});
</script>
<main>
<h1>Welcome to my resume website</h1>
<p>This is the homepage. It is currently a WIP.</p>
</main>
</body>
</html>