-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
57 lines (49 loc) · 2.23 KB
/
about.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kalina Monova | About</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>
<!-- About Content -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<section class="container mx-auto mt-16 p-4 flex-grow md:col-span-1">
<img src="img/IMG_5706 (1).jpg" alt="my picture" class="rounded shadow-md">
</section>
<section class="container mx-auto mt-16 p-4 flex-grow md:col-span-2 text-center">
<h1 class="text-4xl font-bold mb-4">About Me</h1>
<p class="text-lg">Hi, my name is Kalina Monova. I am a second-year studying
Computer Science and Behavioral Neuroscience at Northeastern University.
I am interested in exploring the intersection of these fields specifically computational biology and
bioinformatics,
where I hope to leverage my skills to contribute to research and innovative solutions.
I am also interested in software engineering and web development roles. I enjoy
front-end and the creative aspects as well as the more techincal, problem solving aspects of
back-end. In my free time I like going to the gym, running and reading. </p>
<p><a href="https://github.com/KalinaM11" target="_blank" class="text-blue-500 hover:underline">Link
to github</a></p>
<p><a href="img/Kalina Monova CS Resume.pdf" target="_blank" class="text-blue-500 hover:underline">Resume</a></p>
</section>
</div>
<!-- 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>