-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (67 loc) · 2.69 KB
/
index.html
File metadata and controls
77 lines (67 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<body id="home">
<!-- Header -->
<header>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/profile.css" rel="stylesheet">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/profile.js"></script>
<h1 class="name">arabelle hou</h1>
<!-- Navbar -->
<nav>
<a href="index.html">home</a>
<a href="experience.html">experience</a>
<a href="about.html">about</a>
<a href="blog/">blog</a>
</nav>
</header>
<!-- Introduction -->
<main id="home">
<div class="intro">
<p>Hello! I am a software engineer currently working in Seattle, WA.</p>
</div>
</main>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126271021-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-126271021-1');
</script>
<!-- Contact -->
<footer id="contact" >
<div class="row">
<ul class="list-inline">
<li>
<a href="https://github.com/arabelle"><i class="fa fa-github"></i></a>
</li>
<li>
<a href="https://ca.linkedin.com/in/arabelleh"><i class="fa fa-linkedin"></i></a>
</li>
<li>
<a href="https://www.instagram.com/arabellehou/"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="mailto:arabelle310@alumni.ubc.ca"><i class="fa fa-envelope"></i></a>
</li>
<li>
<a href="/resume.pdf"><i class="fa fa-paperclip"></i></a>
</li>
</ul>
</div>
<div>
<p>© me, 2020</p>
</div>
</footer>
</body>
</html>