-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (109 loc) · 5.49 KB
/
index.html
File metadata and controls
134 lines (109 loc) · 5.49 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eric Liu</title>
<link rel="stylesheet" href="https://use.typekit.net/jmp1xip.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./assets/images/profile-img.ico" />
</head>
<body>
<div class="container">
<div class="grid-container">
<div class="profile-left">
<div class="sticky-container">
<div class="flex-container">
<img src="./assets/images/profile-img.png" alt="profile image" id="profile-img"/>
<div class="links-container">
<a href="https://github.com/jaycka" rel="noopener noreferrer" target="_blank"><img src="./assets/images/github.svg" alt="github icon" id="github" /></a>
<a href="https://replit.com/@jaycka" rel="noopener noreferrer" target="_blank"><img src="./assets/images/replit.svg" alt="replit icon" id="replit" /></a>
<a href="https://leetcode.com/jaycka/" rel="noopener noreferrer" target="_blank"><img src="./assets/images/leetcode.svg" alt="leetcode icon" id="leetcode" /></a>
<a href="https://www.kaggle.com/angelcc" rel="noopener noreferrer" target="_blank"><img src="./assets/images/kaggle.svg" alt="kaggle icon" id="kaggle" /></a>
<a href="https://www.linkedin.com/in/dayuanliu/" rel="noopener noreferrer" target="_blank"><img src="./assets/images/linkedin.svg" alt="linkedin icon" id="linkedin" /></a>
<a href="mailto:chenxjaycka@gmail.com"><img src="./assets/images/envelope-at-fill.svg" alt="envelope icon" id="email" /></a>
<!-- <a href="./public/I am Carla Liezer. Web Developer. Creative Designer._Desktop.png" download="Carla-Liezer_Desktop-Wallpaper"><img src="./assets/images/laptop.svg" class="wallpaper" /></a> -->
<!-- <a href="./public/I am Carla Liezer. Web Developer. Creative Designer._Phone.png" download="Carla-Liezer_Phone-Wallpaper"><img src="./assets/images/phone.svg" class="wallpaper" /></a> -->
</div>
</div>
</div>
</div>
<div class="grid-item name-presentation">
<h1>I am Eric Liu.<br />B.I. Analyst.<br /><span id="creative">Web</span> Developer.</h1>
</div>
<div class="grid-item experience">
<h2>EXPERIENCE</h2>
<hr/>
<h3>Intern Sector Researcher</h3>
<p>KPMG, Beijing, China<br />2021-2022</p>
<h3>Marketing Operation Specialist</h3>
<p>Ant Financial, San Mateo, CA, USA<br />2018-2019</p>
<h3>Co-Founder</h3>
<p>MeeLink, Inc., Milpitas, CA, USA<br />2017-2018</p>
<h3>Manager, eCommerce</h3>
<p>Petphabet, Inc., Fremont, CA, USA<br />2016-2017</p>
</div>
<div class="grid-item education">
<h2>EDUCATION</h2>
<hr/>
<h3>Web Development Bootcamp</h3>
<p>Udemy, Dr. Angela Yu, Developer & Lead Instructor<br />2023 [in progress]</p>
<h3>Google Data Analytics Certificates</h3>
<p>Google, Coursera<br />2023</p>
<h3>Master of Finance</h3>
<p>Tsinghua University<br />2020-2022</p>
<h3>Bachelor of Economics</h3>
<p>University of California, Davis<br />2009-2013</p>
</div>
<div class="grid-item skills">
<h2>SKILLS</h2>
<hr/>
<div class="grid-table-1">
<p>HTML</p>
<p>●●●●●</p>
<p>CSS</p>
<p>●●●●○</p>
<p>JavaScript</p>
<p>●●●●○</p>
<p>Bootstrap</p>
<p>●●●●○</p>
<p>Python</p>
<p>●●●●●</p>
<p>R</p>
<p>●●○○○</p>
<p>MySQL</p>
<p>●●●●○</p>
<p>BigQuery</p>
<p>●●●●○</p>
<p>Tableau</p>
<p>●●●○○</p>
</div>
</div>
<div class="grid-item languages">
<h2>LANGUAGES</h2>
<hr/>
<div class="grid-table-2">
<p>English</p>
<p>●●●●●</p>
<p>Mandarin</p>
<p>●●●●●</p>
<p>Cantonese</p>
<p>●○○○○</p>
</div>
</div>
<div class="grid-item hobbies">
<h2>HOBBIES</h2>
<hr/>
<p>Coding exciting new projects.</p>
<p>Reading spellbinding books.</p>
<p>Sipping delicious mangonadas.</p>
<p>Chilling with my eternally sleepy cat.</p>
</div>
<div class="grid-item footer">
<hr id="thin-line" />
<p>© 2023 Eric Liu. All rights reserved.</p>
</div>
</div>
</div>
</body>
</html>