-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 1.54 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<title>Erica Yee</title>
<link rel="icon" type="image/png" href="files/favicon.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="styles/main.css" rel="stylesheet" type="text/css" />
<link
href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,600;1,700&display=swap"
rel="stylesheet"
/>
<script src="components/header.js" type="text/javascript" defer></script>
<script src="components/footer.js" type="text/javascript" defer></script>
</head>
<body>
<header-component></header-component>
<main>
<div class="content-container">
<h1>Erica Yee</h1>
<p>
I currently work as a data reporter and developer at <a href="https://calmatters.org/">CalMatters</a>, a
nonprofit newsroom covering California policy and politics.
</p>
<p>
In my free time, I enjoy <a href="https://ericayee.com/books-viz/">reading</a>,
<a href="https://musescore.com/user/158711">arranging music</a>
and
<a
href="https://www.figma.com/file/WbQGDDriGVJRW3FpAUNMU6/wrena-character-sheet?node-id=4%3A1953"
>playing Dungeons & Dragons</a
>.
</p>
</div>
</main>
<footer-component></footer-component>
</body>
<html>