-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
174 lines (167 loc) · 5.76 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Zedong Hu - Resume and Portfolio">
<title>Zedong Hu - Professional Portfolio</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
color: #333;
background-color: #f5f5f5;
line-height: 1.6;
}
header {
background-color: white;
color: #333;
padding: 20px 0;
border-bottom: 2px solid #0073e6; /* Solid line to indicate the header */
position: sticky;
top: 0;
z-index: 750;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2rem;
}
nav {
margin-top: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 1rem;
transition: color 0.3s;
}
nav a:hover {
color: #ffc107;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
section h2 {
color: #0056b3;
border-bottom: 2px solid #0056b3;
padding-bottom: 5px;
margin-bottom: 20px;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin-bottom: 15px;
}
ul li::before {
content: "•";
color: #0056b3;
margin-right: 10px;
}
footer {
text-align: center;
padding: 20px;
background-color: #0056b3;
color: white;
margin-top: 30px;
}
footer a {
color: #ffc107;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
header h1 {
font-size: 1.5rem;
}
nav a {
font-size: 0.9rem;
}
.container {
padding: 10px;
}
}
</style>
</head>
<body>
<header>
<h1>Zedong Hu</h1>
<p>
<i class="fab fa-linkedin"></i>
LinkedIn: <a href="https://www.linkedin.com/in/zedong-hu-purdue/" target="_blank">https://www.linkedin.com/in/zedong-hu-purdue/</a>
</p>
<nav>
<a href="#objective">Objective</a>
<a href="#education">Education</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#honors">Honors</a>
<a href="#publications">Publications</a>
<a href="contact.html">Contact</a>
</nav>
<div class="container">
<section id="objective">
<h2>Open to Job</h2>
<p>Seeking an R&D position in the semiconductor industry where I can apply my expertise in device structure design and performance optimization to drive innovation and enhance the efficiency of semiconductor devices. Eager to contribute to a dynamic team and leverage my skills in research, analysis, and problem-solving to achieve technological advancements.</p>
</section>
<section id="education">
<h2>Education</h2>
<ul>
<li><strong>Purdue University</strong> (Aug. 2021 – May 2025)<br>Ph.D. in Electrical and Computer Engineering, GPA: 3.9/4.0</li>
<li><strong>Northwestern University</strong> (Sept. 2019 – Jun. 2021)<br>M.S. in Electrical and Computer Engineering, GPA: 4.0/4.0</li>
<li><strong>University of Electronic Science and Technology</strong> (Sept. 2015 – Jun. 2019)<br>B.S. in Electronic Information Science and Technology, GPA: 3.68/4.0</li>
</ul>
</section>
<section id="projects">
<h2>Research Projects</h2>
<ul>
<li><strong>Flexible Oxide-Oxide Vertically Aligned Nanocomposite (VAN) Memristor</strong><br>
Optimized device performance, improving set/reset voltage by 60%, and enhancing device-to-device variation.
</li>
<li><strong>Metal-Oxide VAN Bilayer Memristor</strong><br>
Developed a bilayer memristor to enhance performance for spiking neural networks with 94% accuracy.</li>
</ul>
</section>
<section id="skills">
<h2>Technical Skills</h2>
<ul>
<li><strong>Programming:</strong> Python, Go</li>
<li><strong>Software:</strong> VS Code, MATLAB, COMSOL, OriginLab, nanoHUB</li>
<li><strong>Tools:</strong> XRD, TEM, AFM, Probe Station</li>
</ul>
</section>
<section id="honors">
<h2>Honors & Awards</h2>
<ul>
<li>Bilsland Dissertation Fellowship (2023)</li>
<li>Best Poster Award, IEEE Chicago (2020)</li>
</ul>
</section>
<section id="publications">
<h2>Publications</h2>
<ul>
<li>Hu, Z., et al. <em>ACS Nano</em> (under review).</li>
<li>Hu, Z., et al. <em>ACS Applied Materials</em>, 2024.</li>
</ul>
</section>
</div>
<footer>
<p>© 2024 Zedong Hu</p>
</footer>
</body>
</html>