-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
96 lines (86 loc) · 3.07 KB
/
Copy pathresearch.html
File metadata and controls
96 lines (86 loc) · 3.07 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
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research — Your Name</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="site-header">
<div class="wrap">
<a href="index.html" class="site-name">Your Name<span>.</span></a>
<nav class="site-nav">
<a href="index.html">Home</a>
<a href="research.html" class="active">Research</a>
<a href="publications.html">Publications</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<section class="hero" style="padding-bottom: 20px;">
<div class="wrap" style="display:block;">
<span class="eyebrow">Research</span>
<h1 style="font-size:2.1rem;">What I work on</h1>
<p class="hero-vision">
A short overview paragraph: describe your overall research direction
here in 2–3 sentences before the specific topics below.
</p>
</div>
</section>
<section class="block">
<div class="wrap">
<!-- ============================================================
Each topic below is one block. To add a new topic, copy
everything from <div class="research-item"> down to the
matching closing </div> and paste it after the last one.
============================================================ -->
<div class="research-item">
<div class="research-figure">
<img src="images/research-placeholder-1.svg" alt="Research topic 1 figure">
</div>
<div class="research-body">
<h3>Research Topic One</h3>
<p>
Expand here with a full paragraph: the motivation for this line
of work, the methods or techniques you use, and what you've
found or aim to find. This can be as long as you like.
</p>
</div>
</div>
<div class="research-item">
<div class="research-figure">
<img src="images/research-placeholder-2.svg" alt="Research topic 2 figure">
</div>
<div class="research-body">
<h3>Research Topic Two</h3>
<p>
Same format — a longer description of your second research area,
the problems it addresses, and any collaborators or funding
bodies involved.
</p>
</div>
</div>
<div class="research-item">
<div class="research-figure">
<img src="images/research-placeholder-3.svg" alt="Research topic 3 figure">
</div>
<div class="research-body">
<h3>Research Topic Three</h3>
<p>
Description of a third research area. Delete this block entirely
if you only have two topics — or duplicate it again for a fourth.
</p>
</div>
</div>
</div>
</section>
<footer>
<div class="wrap">
<p>© 2026 Your Name. Last updated [Month Year].</p>
</div>
</footer>
</body>
</html>