-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·142 lines (142 loc) · 4.28 KB
/
index.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
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
134
135
136
137
138
139
140
141
142
<!-- How's it going, source code diver? -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hey there, I'm Richard 👋</title>
<meta
name="description"
content="Product Engineer building Notabase, a personal knowledge base for networked thinking. Previously studied at Princeton University and worked at Intercom, Amazon, and BuzzFeed."
/>
<meta name="author" content="Richard Chu" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/skeleton.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<div class="header">
<h1 class="page-title">Richard Chu</h1>
<div class="site-navigation">
<a href="index.html" class="nav-item" style="margin-right: 40px"
>About</a
>
<a href="portfolio.html" class="nav-item">Portfolio</a>
</div>
</div>
<div class="row page-container">
<p class="profile-paragraph">
<img src="img/richard.jpg" width="200" class="profile-img" />
</p>
<p>Hey, how's it going? 👋</p>
<p>I'm Richard, a product engineer based out of the NYC area.</p>
<p>
I am making
<a
href="https://notabase.io?ref=churichard.com"
target="_blank"
rel="noopener noreferrer"
>Notabase</a
>, a personal knowledge base for networked thinking.
</p>
<p>
I also built
<a
href="https://screenshotcreator.com"
target="_blank"
rel="noopener noreferrer"
>Screenshot Creator</a
>
and
<a
href="https://makerlist.substack.com"
target="_blank"
rel="noopener noreferrer"
>MakerList</a
>
(acquired in January 2021).
</p>
<p>
I previously worked at
<a
href="https://www.intercom.com"
target="_blank"
rel="noopener noreferrer"
>Intercom</a
>,
<a
href="https://www.amazon.com"
target="_blank"
rel="noopener noreferrer"
>Amazon</a
>,
<a
href="https://www.qub.ac.uk"
target="_blank"
rel="noopener noreferrer"
>Queen's University Belfast</a
>, and
<a
href="https://www.buzzfeed.com"
target="_blank"
rel="noopener noreferrer"
>BuzzFeed</a
>.
</p>
<p>
I graduated from
<a
href="https://www.princeton.edu"
target="_blank"
rel="noopener noreferrer"
>Princeton University</a
>
in 2018 with a B.S.E. degree in computer science.
</p>
<p>
Connect with me on
<a
href="https://twitter.com/richard_chu"
target="_blank"
rel="noopener noreferrer"
>Twitter</a
>,
<a
href="https://github.com/churichard"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>, and
<a
href="https://www.linkedin.com/in/richardchu10"
target="_blank"
rel="noopener noreferrer"
>LinkedIn</a
>. For any inquiries, please contact me at
<script>
var username = 'richardchu10';
var hostname = 'gmail.com';
var linktext = username + '@' + hostname;
document.write(
"<a href='" +
'mail' +
'to:' +
username +
'@' +
hostname +
"'>" +
linktext +
'</a>'
);
</script>
.
</p>
</div>
</div>
</body>
</html>