-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
170 lines (160 loc) · 5.38 KB
/
contact.html
File metadata and controls
170 lines (160 loc) · 5.38 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/contact.css" />
<link rel="shortcut icon" type="image/x-icon" href="images/icon.png" />
<title>IM YI LIN</title>
</head>
<body>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<header>
<div class="mobile_header">
<div class="header_logo">
<img src="images/logo.png" alt="logo" />
</div>
<div class="header_text">
<p>SIM YI LIN</p>
</div>
<div class="header_icon" onclick="toggleMobileMenu()">
<img
src="images/icons/hamburger_menu.png"
alt="hamburger menu icon"
/>
</div>
</div>
<ul class="nav nav-tabs nav-justified">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="work.html">Work Experience</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="https://simyilin.github.io/blog/index.html"
>Blog</a
>
</li> -->
<li class="nav-item">
<a class="nav-link active" href="#">Contact</a>
</li>
</ul>
</header>
<div class="container">
<div class="row wrapper">
<div class="card">
<h2>Contact Information</h2>
<div class="card-item">
<img src="images/icons/email.png" />
<p>
Email:
<a target="_blank" href="mailto:simyilin@umich.edu"
>simyilin@umich.edu</a
>
</p>
</div>
<div class="card-item">
<img src="images/icons/linkedin.png" />
<p>
LinkedIn:
<a
target="_blank"
href="https://www.linkedin.com/in/yi-lin-sim-85a576179/"
>https://www.linkedin.com/in/yi-lin-sim-85a576179/</a
>
</p>
</div>
<div class="card-item">
<img src="images/icons/github.png" />
<p>
GitHub:
<a target="_blank" href="https://github.com/simyilin/"
>https://github.com/simyilin/</a
>
</p>
</div>
</div>
</div>
<!-- <div id="wufoo-z1y7wjhr06evmqj" style="padding:3%">
Fill out my
<a href="https://simyilin.wufoo.com/forms/z1y7wjhr06evmqj"
>online form</a
>.
</div> -->
</div>
<footer>Last updated: 11 Jan 2021</footer>
<script>
var menuOpen = false;
function toggleMobileMenu() {
const navItems = document.querySelectorAll(".nav-item");
if (!menuOpen) {
navItems.forEach((navItem) => navItem.classList.add("popup"));
menuOpen = true;
} else {
navItems.forEach((navItem) => navItem.classList.remove("popup"));
menuOpen = false;
}
}
var z1y7wjhr06evmqj;
(function (d, t) {
var s = d.createElement(t),
options = {
userName: "simyilin",
formHash: "z1y7wjhr06evmqj",
autoResize: true,
height: "684",
async: true,
host: "wufoo.com",
header: "show",
ssl: true,
};
s.src =
("https:" == d.location.protocol ? "https://" : "http://") +
"secure.wufoo.com/scripts/embed/form.js";
s.onload = s.onreadystatechange = function () {
var rs = this.readyState;
if (rs) if (rs != "complete") if (rs != "loaded") return;
try {
z1y7wjhr06evmqj = new WufooForm();
z1y7wjhr06evmqj.initialize(options);
z1y7wjhr06evmqj.display();
} catch (e) {}
};
var scr = d.getElementsByTagName(t)[0],
par = scr.parentNode;
par.insertBefore(s, scr);
})(document, "script");
</script>
</body>
</html>