-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (55 loc) · 2 KB
/
Copy pathindex.html
File metadata and controls
63 lines (55 loc) · 2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Uzu Lim — Academic Profile</title>
<meta name="description" content="Academic profile for Dr. Your Name: research, publications, teaching, and contact." />
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<main class="container">
<header class="bio">
<div class="avatar" aria-hidden="true">Photo</div>
<div>
<h1>Uzu Lim</h1>
<p class="title">Postdoctoral Researcher — Queen Mary University of London</p>
<p class="contact">
<a href="x@qmul.ac.uk, x=sung.h.lim">you@university.edu</a> · <a href="https://github.com/yourusername">GitHub</a> · <a href="#cv">CV</a>
</p>
</div>
</header>
<section id="research">
<h2>Research</h2>
<p>My research is at the intersection of geometry, topology, and data science.</p>
</section>
<section id="publications">
<h2>Selected Publications</h2>
<ul>
<li>Lastname, Y., & Your Name. (2025). Title of paper. <em>Journal Name</em>.</li>
<li>Your Name, et al. (2024). Another paper title. <em>Conference</em>.</li>
<li>Preprints and data: <a href="#">arXiv / Zenodo</a>.</li>
</ul>
<p><a href="#publications-full">Full publication list</a></p>
</section>
<section id="teaching">
<h2>Teaching</h2>
<p>I have taught courses on algebraic number theory and algebraic topology.</p>
</section>
<section id="service">
<h2>Service & Outreach</h2>
<p>Journal reviewing, conference organization, and departmental service.</p>
</section>
<section id="cv">
<h2>Curriculum Vitae</h2>
<p><a href="/cv.pdf">Download CV (PDF)</a></p>
</section>
<footer class="site-footer">
<p>© <span id="year"></span> Your Name · <a href="https://orcid.org/">ORCID</a></p>
</footer>
</main>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>