-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (56 loc) · 2.81 KB
/
index.html
File metadata and controls
56 lines (56 loc) · 2.81 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/43575c3d5f.js" crossorigin="anonymous"></script>
<title>Toby Rodel</title>
<script>
function expandtopbar() {
var x = document.getElementById("pagetopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="topnav" id="pagetopnav">
<a href="index.html">Home</a>
<a href="research.html">Research</a>
<a href="outreach.html">Outreach</a>
<a href="publications.html">Publications</a>
<a href="conferences.html">Conferences</a>
<a href="javascript:void(0);" class="icon" onclick="expandtopbar()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="mainbody" id="pagemaintext">
<h1>Toby Rodel</h1>
<figure>
<img src="files/images/toby_n_geck.jpg" alt="A picture of Toby Rodel wearing glasses with a small yellow and black spotted lizard on their arm" width="250">
</figure>
<p>Welcome to my website! I'm Toby Rodel, a PhD student at Queen's University Belfast researching Astronomy. My research focusses on the search for and characterisation of Exoplanets orbiting distant stars.</p>
<p>Here you can find information about my research, publications, and other projects.</p>
<h2>Career timeline</h2>
<ul>
<li>2023 - present: PhD - Astrophysics, Queen's University Belfast</li>
<li>2022 - 2023: MSc by research - Physics, University of Warwick</li>
<li>2019 - 2022: BSc - Physics, University of Warwick</li>
</div>
</body>
<footer>
<div class="social-buttons">
<a href="https://github.com/TobyRodel"><i class="fa-brands fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/toby-rodel-516141216/"><i class="fa-brands fa-linkedin fa-2x"></i></a>
<a href="https://bsky.app/profile/astrotobe.bsky.social"><i class="fa-brands fa-bluesky fa-2x"></i></a>
</div>
<span class="footleft"><i class="fa-solid fa-envelope"></i><a href="mailto:trodel01@qub.ac.uk">trodel01@qub.ac.uk</a></span>
<span class="footright"><i class="fa-brands fa-orcid"></i><a href="https://orcid.org/0009-0009-2175-7284">0009-0009-2175-7284</a></span>
<small>
<br><i class="fa-regular fa-copyright"></i> 2026 Toby Rodel. All rights reserved.
</small>
</footer>
</html>