-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (59 loc) · 1.89 KB
/
contact.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
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Sophia Li: Contact Me
</title>
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel='stylesheet' href='css/stylesheet.css' type="text/css"/>
<script src="js/jquery-1.7.2.min.js"></script>
</head>
<body>
<div class="content">
<div class="container">
<div class="navbar">
<table class="navtable">
<tr>
<td><a href="index.html">Home</a></td>
<td><a href="portfolio.html">Portfolio</a></td>
<td><a href="resume.html">Resume</a></td>
<td><a href="about.html">About</a></td>
<td><a href="http://blog.justsophie.com">Blog</a></td>
</tr>
</table>
</div>
</br>
<h1>Contact Information</h1>
> ./email</br>
<a href="mailto:[email protected]?Subject=Hello">[email protected]</a></br>
</br>
> ./phone</br>
(857) 209-4915</br>
</br>
> ./professional</br>
<a href='https://github.com/srli' target="_blank">Github</a> <a href='https://www.linkedin.com/in/sophia-li-8726b37b' target="_blank">LinkedIn</a></br>
</br>
> ./social</br>
<a href='https://www.flickr.com/photos/139437574@N04/' target="_blank">Flickr</a> <a href='https://soundcloud.com/sophie-li-19' target="_blank">Soundcloud</a></br>
</br>
<div class="text">> </div>
<div class="cursor">|</div>
</div>
<!-- <div class="footer">© Sophia Li 2016</div> -->
</div>
<script type="text/javascript">
$(document).ready(function(){
setInterval('cursorAnimate()', 800);
});
function cursorAnimate(){
$('.cursor').animate({
opacity: 0
}, 'medium', 'swing').animate({
opacity: 1
}, 'medium', 'swing');
}
</script>
</body>
</html>