-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (42 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Stephen Nah - About Me</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.cdnfonts.com/css/gilroy-bold" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Figtree&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<nav>
<p id="name">Stephen Nah</p>
<ul>
<li><a class="active" href="">about me</a></li>
<li><a href="projects.html">projects</a></li>
<li><a href="resume.html">resume</a></li>
<li><a href="courses.html">courses</a></li>
</ul>
</nav>
</div>
<div class="main">
<h1>About Me</h1>
<p>
Hello! 👋 I'm a senior at Carnegie Mellon University majoring in
computer science. I'm currently interested in software engineering,
systems, and programming language theory. Feel free to reach out via my
socials!
</p>
<div>
<h3>Socials</h3>
<ul>
<li><a href="mailto:[email protected]">Email</a></li>
<li><a href="https://www.linkedin.com/in/stephen-nah/">LinkedIn</a></li>
<li><a href="https://github.com/snah0902">GitHub</a></li>
</ul>
</div>
</div>
</body>
</html>