-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (49 loc) · 2.73 KB
/
index.html
File metadata and controls
51 lines (49 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Aaron HuSun">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Aaron HuSun professional website">
<title>Aaron HuSun</title>
<link rel="stylesheet" href="static/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script defer src="static/script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
</head>
<body onload="addYear()">
<header>
<h1 id="webname">Aaron HuSun</h1>
<nav id="myTopnav" class="topnav">
<a href="index.html" class="active">Home</a>
<a href="views/cv.html">CV</a>
<a href="views/contact.html">Contact Me</a>
<a href="views/fun.html">For Fun</a>
<a href="javascript:void(0);" class="icon" >
<i class="fa fa-bars" onclick="activeNav()"></i>
</a>
</nav>
</header>
<div class="main">
<h2 id="greeting"></h2>
<img src="static/me.jpg" alt="Aaron HuSun profile image" width="350px" class="classA">
<div class="classA">
<span id="shortIntro"> Hi, I'm Aaron HuSun, an undergraduate first year at Carnegie Mellon University. I'm majoring in Information Systems,
with an intended additional major in Computer Science. I am currently involved in TEDxCMU as part of the innovation team,
ScottyLabs as the tech lead for CMUEats, and re:Bloom as a developer. I hope to become a software developer in the future,
especially with a focus in artificial intelligence.</span>
<span id="readMore"> read more ...</span>
<span id="longIntro">My background includes certifications in Natural Language Processing and
machine learning, as well as a research project using NLP at the University of Kentucky in biomedical informatics. I am Chinese-
American and I was born and raised in Lexington, Kentucky. In my free time, I love playing and watching any sports, especially volleyball and
basketball, as well as playing video games with friends. Thanks for coming to explore my website! You can reach out to me personally at
aaron.husun@gmail.com or connect with me on LinkedIn at linkedin.com/in/aaron-husun/.</span>
<span id="readLess"> read less</span>
</div>
</div>
<footer>
<p id="copyYear">Aaron HuSun ©</p>
</footer>
</body>
</html>