-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
73 lines (59 loc) · 1.98 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Sophia Li: Resume
</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="about.html">About</a></td>
<td><a href="contact.html">Contact</a></td>
<td><a href="http://blog.justsophie.com">Blog</a></td>
</tr>
</table>
</div>
</br>
<h1>Resume</h1>
> <a href="pdfs/SophiaLi_resume.pdf" target="_blank">download resume.pdf</a></br>
<div class="text">> evince resume.pdf</div>
</br>
<div class="text_holder"><object data="pdfs/Sophie-Resume.pdf" type="application/pdf" width="800px" height="1100px" toolbar=0>
<div class="text_holder">
Oh! It appears you that don't have a PDF plugin for this browser.</br>
No worries, <a href="pdfs/Sophie-Resume.pdf">click here to
download my resume instead.</a></div>
</object></div>
</br></br>
<div class="text">> Thanks for reading, have a nice day. :-)</div>
<div class="cursor">|</div>
</br>
</br>
</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>