-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (71 loc) · 3.55 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
<html>
<head>
<title>Home | Sarah Gwin</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" type="text/css" href="assets/css/common.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/index.css"/>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico"/>
<meta name="viewport" content="width=device-width, user-scalable=no">
<script src="assets/js/jquery-1.9.1.js"></script>
<script src="assets/js/script.js"></script>
<!-- Google tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X4C3LP0CC0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-X4C3LP0CC0');
</script>
</head>
<body>
<div id="sidebar">
<div id="sidebar-content">
<div class="sidebar-name">Sarah Jiyun Gwin</div>
<div class="sidebar-category">ABOUT</div>
<a href="index.html"><div class="sidebar-item">Home</div></a>
<a href="work.html"><div class="sidebar-item">Work</div></a>
<a href="projects.html"><div class="sidebar-item">Projects</div></a>
<a href="organizations.html"><div class="sidebar-item">Organizations</div></a>
<div class="sidebar-category">RESOURCES</div>
<a href="cs61b.html"><div class="sidebar-item">CS 61B</div></a>
<a href="blog.html"><div class="sidebar-item">Blog</div></a>
<div class="sidebar-category">CONTACT</div>
<a href="assets/resume.pdf"><div class="sidebar-item">Resume</div></a>
<a href="https://github.com/sarahjkim"><div class="sidebar-item">GitHub</div></a>
<a href="https://www.linkedin.com/in/sarahjkim"><div class="sidebar-item">LinkedIn</div></a>
<a href="mailto:hi@sarahgwin.com"><div class="sidebar-item">Email</div></a>
<div id="more">
<!-- Read More designed by P.J. Onori from The Noun Project --!>
<img src="assets/images/more.svg">
</div>
</div>
</div>
<div id="content">
<div id="pictureofme"></div>
<div id="whiteside">
<div id="aboutme">
<div id="name">Sarah Jiyun Gwin</div>
<div id="description">
UC Berkeley Computer Science, 2016
</div>
<div class="header">Hello, World!</div>
<div class="text">
I am a follower of Jesus Christ, which means I am infinitely far from perfect but loved and saved by a holy God. I attend <a href="https://www.truenorthsv.org/">True North Church</a>.
</div>
<div class="text">
I'm married to a wonderful husband, <a href="https://bwgwin.com/">Ben</a>.
</div>
<div class="text">
I am a software engineer at Google. Previously, I was a student at UC Berkeley, where I was involved in the teaching community.
</div>
<div class="text">
In my spare time, I enjoy reading books, learning more about the world, eating delicious food, spending time with family and friends, and sleeping. I also dabble in photography.
</div>
<div class="text">
Thanks for visiting my site!
</div>
</div>
</div>
</div>
</body>
</html>