mirror of
https://github.com/System-End/My-website.git
synced 2026-04-19 22:05:07 +00:00
29 lines
707 B
HTML
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>
|