-
Notifications
You must be signed in to change notification settings - Fork 0
/
biography.html
58 lines (54 loc) · 2.61 KB
/
biography.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Biography</title>
<link href="styles/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<nav class="topnav" role="navigation">
<ul>
<li>
<a id="home" aria-haspopup="true" aria-expanded="false" href="index.html" tabindex="0">Home▽</a>
<ul id="home-pulldown" class="project-pulldown">
<li><a href="gallery.html">Art Gallery</a></li>
<li><a href="https://dl.acm.org/doi/10.1145/3494991">FaceBit Paper</a></li>
<li><a href="https://dl.acm.org/doi/10.1145/3560905.3568561">Protean Paper</a></li>
<li><a href="ppg.html">PPG Processing</a></li>
<li><a href="project2.html">JS Ray Tracer</a></li>
<li><a href="datavisualization.html">Data Visualization</a></li>
</ul>
</li>
<li><a href="resume.html">Resume</a></li>
<li nav aria-current=page><a href="biography.html">Biography</a></li>
<li><a id="contact" aria-haspopup="true" aria-expanded="false" tabindex="0">Contact▽</a>
<ul id="contact-pulldown" class="pulldown">
<li>jasonhuang2023[at]u[dot]northwestern[dot]edu</li>
<li><a href="https://github.com/jjh9397/">Github</a></li>
</ul>
</li>
</ul>
</nav>
<main role="main">
<article class="brick-container-container" aria-labelledby="biography" role="article">
<h1 id="biography">Biography</h1>
<p>
Hi! I'm a fourth year student studying computer science and premed at Northwestern. I grew up in the suburbs of Chicago
and Shanghai, and now live in Evanston. At Northwestern, my major in computer science and interest in medicine led to
exciting research opportunities such as the <a href="https://dl.acm.org/doi/10.1145/3494991">Smart PPE</a> project with
the Ka Moamoa lab, where I currently work as a research assistant on projects involving low power embedded systems and their
applications towards healthcare.
</p>
<br>
<p>
Beyond academics, I am a volunteer peer mentor for the YW Tech Lab
web development class for underserved members of the community, and am also a state licensed Basic Emergency Medical Technician.
In my free time, I enjoy drawing and painting, and I've shown some of my artworks and studies in my home page gallery. I also enjoy
fencing epee, and serve as the treasurer for the Northwestern fencing club.
</p>
</article>
</main>
<script src="scripts/main.js"></script>
</body>
</html>