-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (88 loc) · 4.48 KB
/
index.html
File metadata and controls
94 lines (88 loc) · 4.48 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Katherine Ormerod</title>
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav class="navigation">
<a href="index.html" class="site-title">Katherine Ormerod</a>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="talks.html">Talks</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<button class="menu-toggle">☰</button>
</nav>
</header>
<main>
<section id="home" class="home-section">
<div class="content-grid">
<div class="text-content">
<h1>Welcome</h1>
<p>I'm an Astrophysics PhD student at the Astrophysics Research Institute,
Liverpool John Moores University. My research focuses on galaxies in the Epoch of Reionisation, and primarily
makes use of JWST NIRSpec data.</p>
<a href="about.html" class="cta-button">Find out more</a>
<div class="social-links">
<a href="https://github.com/k-ormerod" aria-label="GitHub">
<svg class="icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"></path>
</svg>
</a>
<a href="https://www.linkedin.com/in/katherine-ormerod-306804197/" aria-label="LinkedIn">
<svg class="icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
</a>
<a href="mailto:arikorme@ljmu.ac.uk" aria-label="Email">
<svg class="icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<rect x="2" y="4" width="20" height="16" rx="2"></rect>
<path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"></path>
</svg>
</a>
<a href="https://orcid.org/0000-0003-2000-3420" aria-label="ORCID">
<img src="orcid.png" alt="ORCID logo" class="icon">
</a>
</div>
</div>
<div class="image-container">
<img src="bgimage.png" alt="Katherine Ormerod" class="profile-image">
</div>
</div>
</section>
</main>
<footer>
<p>© 2026 Katherine Ormerod</p>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const menuToggle = document.querySelector('.menu-toggle');
const navMenu = document.querySelector('.navigation ul');
menuToggle.addEventListener('click', function() {
navMenu.classList.toggle('show');
});
document.addEventListener('click', function(event) {
const isClickInsideNav = event.target.closest('.navigation');
if (!isClickInsideNav && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
window.addEventListener('resize', function() {
if (window.innerWidth > 768 && navMenu.classList.contains('show')) {
navMenu.classList.remove('show');
}
});
});
</script>
</body>
</html>