-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoursework.html
More file actions
executable file
·106 lines (100 loc) · 2.58 KB
/
coursework.html
File metadata and controls
executable file
·106 lines (100 loc) · 2.58 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
<!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.html"> Origami </a> </li>
<li> <a target="_blank" href = "http://www.inkorrigible.blogspot.com"> Webcomic </a> </li>
</ul>
</div>
<div id = "wrapper">
<div id = "resume">
<h1>
Sophomore Year
</h1>
<h2>
Spring
</h2>
<ul>
<li> BioE42 </li>
<li> BioE44 </li>
<li> Econ116 American Economic History </li>
<li> Comm166 Virtual People </li>
</ul>
<h2>
Winter
</h2>
<ul>
<li> BioE41 </li>
<li> Bio42 </li>
<li> CME106 Statistics and Probability for Engineers </li>
<li> GERGEN104N Resistance Writings in Nazi Germany </li>
<li> Music156 Stanford Improvisation Collective [sic] </li>
</ul>
<h2>
Fall
</h2>
<ul>
<li> Bio41 </li>
<li> CS103 </li>
<li> CS106B </li>
<li> Eng15 Dynamics </li>
<li> Environmental and Geological Field Studies in the Rocky Mountains </li>
</ul>
<h1>
Freshman Year
</h1>
<h2>
Spring
</h2>
<ul>
<li> Rhetoric of the Economist </li>
<li> Medical Device Innovation </li>
<li> Nanotechnology Introsem </li>
<li> IHUM Classics </li>
</ul>
<h2>
Winter
</h2>
<ul>
<li> CME102 Ordinary Differential Equations </li>
<li> CS106A </li>
<li> Chem33 Organic Chemistry </li>
<li> IHUM Classics </li>
</ul>
<h2>
Fall
</h2>
<ul>
<li> CME100 Vector Calculus for Engineers </li>
<li> Chem31X Chemical Principles </li>
<li> ME26N Think like a Designer </li>
<li> IHUM Word and Image </li>
</ul>
</div>
</div>
</body>
</html>