-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.html
70 lines (55 loc) · 2.08 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
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3Y6Y8GD18B"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3Y6Y8GD18B');
</script>
<meta charset = "utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<div class = "container">
<div class = "header">
<div class = "title">
<h1>Ryan Chan</h1>
</div>
<div class = "nav">
<a href="index.html">PROJECTS</a>
<a href="about.html">ABOUT ME</a>
</div>
</div>
<div class = "about">
<h2> About me </h2>
<p>
Hello there! I'm Ryan Chan. I am currently an embedded systems engineer at NASA Langley Research Center where I work on uncrewed aerial systems (UAS) and prototypes of lunar payloads. In my free time, I like to make simple Arduino-based projects that I post on this website and my YouTube channel. Check them out!
</p>
<div class = "resume">
<div class = "link">
<a href="files/other/Ryan_Chan_Resume_v9P.pdf" download target="_blank"> Download My Resume </a>
</div>
</div>
<div class = "contacts">
<!-- <a href="mailto:email">email<br></a> -->
<br><br>
<h3>Contact Me:</h3>
<div class = "link">
<a href="mailto:[email protected]">[email protected]<br></a>
<br>
<a href="https://www.linkedin.com/in/ryan-chan-955b801a4/" target="_blank">LinkedIn<br></a>
<a href="https://github.com/RyanChanTech" target="_blank">GitHub<br></a>
<a href="https://www.youtube.com/ryanchan" target="_blank">YouTube</a>
</div>
</div>
</div>
</div>
</body>
</html>