-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
78 lines (56 loc) · 3.2 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
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="icon" href="assets/img/logo2.png">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/about.css">
<link rel="stylesheet" href="assets/css/mobile.css">
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@400;500&family=Roboto&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
</head>
<body>
<!-- NAVBAR -->
<div id="navbar">
<a class="clk" href="index.html"><img class="clk" id="logo" src="assets/img/logo2.png" alt=""></a>
<div id="navbar-items" class="roboto">
<a class="item web clk active" id="about" href="about.html">About Me</a>
<a class="item web clk" id="experience" href="experience.html">Experience</a>
<a class="item web" id="resume" href="assets/pdf/HaotianResume.pdf" target="_blank">Resume</a>
</div>
<img id="menu-icon" src="assets/img/menu.png" alt="">
</div>
<div id="mobile-nav">
<a class="item clk active" id="about" href="about.html">About Me</a>
<a class="item clk" id="experience" href="experience.html">Experience</a>
<a class="item" id="resume" href="assets/pdf/HaotianResume.pdf" target="_blank">Resume</a>
</div>
<div id="everything" class="section">
<!-- ABOUT -->
<h1>About Me</h1>
<div id="pic-descript">
<img id="korea" src="assets/img/korea.jpg" alt="">
<div id="description">
<p>I'm a senior at UC Berkeley studying computer science who was raised in California.</p>
<p>In the past, I've interned at Apple and Palo Alto Networks as a Software Engineering Intern working in AI/ML and cybersecurity respectively.
At Apple, I worked on a weekly automation tool that updates lexical data in Siri. At PANW, I worked on a tool that tracks connected
hardware devices (USB, ethernet, etc) for resource management for an SD-WAN.</p>
<p>I also have a profound passion for UI/UX design and web development. I'm a course instructor for CS 198: Web Design DeCal, which is the popular
introduction to web design course at Berkeley.</p>
<p>In my free time, I love to play piano, ukelele, basketball, as well as binge Netflix shows and indulge in video games. I'm also raising a little calico
kitten called Peanut!</p>
<!-- SOCIAL MEDIA -->
<div id="social">
<a href="https://www.facebook.com/haotian.ye"><img class="media" id="fb" src="assets/img/fb.png" alt=""></a>
<a href="https://www.instagram.com/haoy.yuh/"><img class="media" id="ig"src="assets/img/ig.png" alt=""></a>
<a href="https://www.linkedin.com/in/haotiany/"><img class="media" id="li"src="assets/img/linkedin.png" alt=""></a>
<a href="mailto:haotianyee@gmail.com"><img class="media" id="mail" src="assets/img/mail.png" alt=""></a>
</div>
</div>
</div>
</div>
<script src="assets/script/mobile_nav.js"></script>
</body>
</html>