-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
executable file
·50 lines (44 loc) · 1.31 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<meta name="description" content="eric kofman">
<meta name="keywords" content="eric kofman, stanford">
<link rel="stylesheet" href = "ekofmanstyle.css">
<script type='text/javascript'>
function expandToWindow(element) {
var margin = 10;
if (element.style.height < window.innerHeight) {
element.style.height = window.innerHeight + margin;
}
}
</script>
<title>
Eric Kofman
</title>
</head>
<body onload='expandToWindow(document.getElementById("wrapper"));'>
<div id = "header">
<div id = "pageTitle">
<a href = "index.html"> Eric Kofman </a>
</div>
<ul>
<li> <a href = "resume.html"> Resumé </a> </li>
<li> <a href = "projects.html"> Projects </a> </li>
<li> <a href = "coursework.html"> Coursework </a> </li>
<li> <a href = "art.html"> Art </a> </li>
<li> <a href = ""> Origami </a> </li>
<li> <a target="_blank" href = "http://www.inkorrigible.blogspot.com"> Webcomic </a> </li>
</ul>
</div>
<div id = "wrapper">
<a href = "http://www.linkedin.com/pub/eric-kofman/29/986/59a">
<div id = "subtitle">
<u>Linked-in Profile</u>
</div>
</a>
<div id = "resume">
<img src = "images/resume.jpg">
</div>
</div>
</body>
</html>