-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kalina Monova | Home</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-pink-100 text-gray-800 flex flex-col min-h-screen">
<!-- Navigation -->
<div id="header-container"></div>
<script>
fetch('/header.html')
.then(response => response.text())
.then(html => {
document.getElementById('header-container').innerHTML = html;
});
</script>
<!-- Main Content -->
<section class="container mx-auto mt-16 p-4 text-center flex-grow">
<h1 class="text-4xl font-bold mb-4">Welcome to My Portfolio</h1>
<p class="text-lg mb-8">I'm Kalina Monova, a Computer Science and Behavioral Neuroscience student at Northeastern University.</p>
<a href="projects.html" class="bg-blue-500 text-white px-4 py-2 rounded hover:bg-blue-600">View My Projects</a>
</section>
<!-- Footer -->
<div id="footer-container"></div>
<script>
fetch('/footer.html')
.then(response => response.text())
.then(html => {
document.getElementById('footer-container').innerHTML = html;
});
</script>
</body>
</html>