-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
63 lines (63 loc) · 3.07 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Andrew Zhao - About Me</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<script src="https://kit.fontawesome.com/b244fa50d8.js" crossorigin="anonymous"></script>
</head>
<div header>
<div class=nav>
<a href="index.html" class="nav-item">
<span class="title name-logo">Andrew Zhao</span>
</a>
<a href="index.html" class="nav-item nav-button">home</a></li>
<a href="about.html" class="nav-item nav-button">about</a></li>
<a href="resume.pdf" target="_blank" class="nav-item nav-button">resume</a></li>
</div>
</div>
<body>
<div class="about-container">
<div class="about-column about-text text-block">
<p>
Hi! I'm Andrew, an Electrical and Computer Engineering major at Carnegie Mellon University (Class of '24).
I love combining technology and design to create cool things. Engineering helps build
great new solutions, and design keeps them close and connected to us
on an human level.
</p>
<p>
This summer, I built a backend web architecture proof of concept at the NASA Jet
Propulsion Laboratory to prove out a set of tools for web modernization. My work focused on
making app deployments easier and enhancing security.
</p>
<p>
In my free time I enjoy creating, playing, and modifying video games. I enjoy skateboarding and
going target shooting outdoors. I also like to read and watch about engineering topics like
electronics, engineering, and aerospace. I'm always open to talking and meeting new people, feel free reach out to me!
</p>
</div>
<div class="about-column about-picture">
<img src="images/profile.jpg" class="profile-picture">
</div>
</div>
<div class=" footer">
<div class="footer-links">
<a class="footer-element" target="_blank" href="https://www.linkedin.com/in/andrewhz/">
<i class="fab fa-linkedin"></i>
<span>linkedin</span>
</a>
<a class="footer-element" target="_blank" href="mailto:[email protected]">
<i class="fas fa-paper-plane"></i>
<span>email</span>
</a>
<a class="footer-element" target="_blank" href="https://github.com/47hao">
<i class="fab fa-github"></i>
<span>github</span>
</a>
</div>
<span class="footer-credit">site built from scratch</span>
</div>
</body>
</html>