My-website/index.html
2024-11-30 12:30:05 -06:00

41 lines
1.1 KiB
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>
<div id="spotify-list">
<h2>My Most Listened to Songs</h2>
<ul id="spotify-list"></ul>
</div>
<div id="github-repos">
<h2>My GitHub Repositories</h2>
<ul id="repo-list"></ul>
</div>
<!-- scripts -->
<script src="/scripts/theme-toggle.js"></script>
<script src="/scripts/spotify.js"></script>
<script src="/scripts/github-repos.js"></script>
</body>
</html>