-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 2.38 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 2.38 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
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website - Alading Kun</title>
<link rel="icon" href="Images/genie.png" type="image/png">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<div class="profile">
<img src="Images/aladdin.jpg" alt="Profile Picture of Alading Kun" class="profile-pic">
</div>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#publications">Publications</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>Hi, I’m Alading (also known as Aladdin) Kun. I am currently pursuing the MSE in Scientific Computing (SCMP) program at the University of Pennsylvania, where I focus on advanced computational techniques, numerical simulations, and machine learning applications to solve complex scientific and engineering problems.</p>
<p>Previously, I earned my Bachelor's degree in Computational Modeling and Data Analytics (CMDA) from Virginia Tech. During my time there, my research centered on a data-driven approach to solving complex scientific problems by leveraging large datasets to develop computational models that effectively predict and analyze real-world systems.</p>
</section>
<section id="publications">
<h2>Publications</h2>
<ul>
<li><a href="https://dl.acm.org/doi/10.1145/3613905.3651024">"Is Long-distance Hiking an Emotional Roller Coaster?" Evaluating Emotions and Weather Effects on the Appalachian Trail</a>
<span class="text-xl">CHI 2024</span>
</li>
<li><a href="https://doi.org/10.1039/D4VA00172A">Monitoring wind and particle concentrations near freshwater and marine harmful algal blooms (HABs)</a>
<span class="text-xl">Environmental Science: Advances 2024</span>
</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can contact me via email: <a href="mailto:alankent911@gmail.com">alankent911@gmail.com</a></p>
</section>
</main>
</body>
</html>