mirror of
https://github.com/System-End/My-website.git
synced 2026-04-19 19:45:10 +00:00
41 lines
1.1 KiB
HTML
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>
|