-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cairo">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>Hi, I'm Erica</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="menu">
<a class="menu-item" href="index.html">About</a>
<a class="menu-item" href="blog.html">Blog</a>
<a class="menu-item" href="https://github.com/pui">Github</a>
</div>
</div>
<div class="content">
<div id="intro">
<img id="me" src="me.jpg" />
<div id="intro-text">
<h1>Hello, I'm Erica.</h1>
<p>Most days I'm drinking tea, going for walks, and buying too many jigsaw puzzles. I'm a big music nerd who loves hip hop. Bookstores and coffee shops are my happy places.</p>
<p>I'm Canadian and have lived in the San Francisco Bay Area for 15+ years. For work, I do tech things at <a href="https://www.tallpoppy.com/">Tall Poppy</a>.</p>
</div>
</div>
</div>
<div class="footer">
All content of this website is copyright © Erica Kwan 2022, unless otherwise stated.
</div>
</div>
</body>
</html>