-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (69 loc) · 2.39 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zhenkun Yuan</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
header {
text-align: center;
margin-bottom: 50px;
}
.section {
margin-bottom: 30px;
}
.section h2 {
color: #333;
}
.section p {
font-size: 16px;
line-height: 1.5;
}
footer {
text-align: center;
margin-top: 50px;
}
</style>
</head>
<body>
<header>
<h1>Zhenkun Yuan</h1>
<p>Welcome to my webpage!</p>
</header>
<!-- About Me Section -->
<section class="section" id="about-me">
<h2>Current Position</h2>
<p>
I am currently a Postdoc at Dartmouth College in New Hampshire, United States.
</p>
</section>
<!-- Research Summary Section -->
<section class="section" id="research-summary">
<h2>Research Summary</h2>
<p>
I apply electronic structure theory and high-throughput, first-principles calculations to advance materials for solar photovoltaics and other optoelectronic applications.
</p>
</section>
<!-- Conference Presentations -->
<section class="section" id="cv">
<h2>Conference Presentations</h2>
<p><i><span style="color:red;">Upcoming:</span></i> (<i>Oral</i>) 2025 APS March Meeting, Anaheim, CA.</p>
<p><i><span style="color:red;">Upcoming:</span></i> (<i>Oral</i>) 2025 MRS Spring Meeting & Exhibit, Seattle, WA.</p>
<p><i><span style="color:orange;">Recent:</span></i> (<i>Oral</i>) 2024 MRS Fall Meeting & Exhibit, Boston, MA.</p>
</section>
<!-- Social Connect -->
<section class="section" id="social">
<h2><i>Let's Connect!</i></h2>
<p><i><span style="color:blue;">Email:</span></i> [email protected]</p>
<p>We could connect on <a href="https://www.linkedin.com/in/zhenkun-yuan-5a74b5183/" target="_blank">LinkedIn</a>.</p>
<p>You might also follow my activities on <a href="https://www.instagram.com/zhenkun_yuan" target="_blank">Instagram</a>.</p>
</section>
<footer>
<p>© 2024 All Rights Reserved</p>
</footer>
</body>
</html>