-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (71 loc) · 3.52 KB
/
index.html
File metadata and controls
75 lines (71 loc) · 3.52 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kathryn Bello</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Lexend:wght@100..900&family=Sono:wght@200..800&display=swap" rel="stylesheet">
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body class="sono-font">
<div class="main-wrapper">
<!-- Header -->
<header>
<div class="nav-container">
<div class="hamburger">☰</div> <!-- Hamburger Icon -->
<ul class="nav">
<li><a href="index.html">home</a></li>
<!-- <li><a href="blog">blog</a></li>
<li><a href="projects">projects</a></li>
<li><a href="contact.html">contact</a></li> -->
<!-- Dark Mode Toggle -->
<li id="theme">
<button @click="toggleDarkMode">
{{ isDark ? '💡' : '🌑' }}
</button>
</li>
</ul>
</div>
<!-- Mobile Nav -->
<ul class="mobile-nav">
<li><a href="index.html">home</a></li>
<!-- <li><a href="/blog">blog</a></li>
<li><a href="/projects">projects</a></li>
<li><a href="contact.html">contact</a></li> -->
<li id="mobile-theme">
<button @click="toggleDarkMode">
{{ isDark ? '💡' : '🌑' }}
</button>
</li>
</ul>
</header>
<!-- Main Content -->
<main>
<section class="main-content">
<div class="main-title lexend-title"><b>Hi, I'm Kathryn.</b></div>
<div class="content-wrapper">
<div class="image">
<img src="images/kat_b.jpg" alt="Kathryn">
</div>
<div class="intro">
<p>I'm a software test engineer at the <a href="https://www.stsci.edu/home">Space Telescope Science Institute</a>, where I contribute to maintaining both automated and manual tests for applications that host telescope data. I work with tools and technologies such as Robot Framework, FastAPI, Python, GitLab CI/CD pipelines, Selenium, and PostgreSQL.</p>
<br>
<p>Outside of work, I'm passionate about learning, coffee, progressive metal, getting lost in a good book, and working torwards my next big running goal.</p>
<br>
<p>Currently, the best way to contact me is via email <a href="mailto:bello.kathrynj@gmail.com">(bello.kathrynj@gmail.com)</a> or <a href="https://www.linkedin.com/in/kathrynbello/" target="_blank">LinkedIn</a>.</p>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<p>Copyright © 2025 Kathryn Bello</p>
</footer>
</div>
<script src="scripts/main.js"></script>
</body>
</html>