-
Notifications
You must be signed in to change notification settings - Fork 3
/
about_us.html
128 lines (110 loc) · 6 KB
/
about_us.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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Copy Cats</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="conteneur">
<div id="header">Copy Cats: Plagiarism Detection</div>
<div id="haut">
<ul class="menuhaut">
<li><a href="index.html">Home</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="about_us.html">About the Copy Cats</a></li>
<li><a href="code.html">Code</a></li>
</ul>
</div>
<div id="centre">
<h1>About Us</h1>
<table width="90%" border="0" cellpadding="3">
<tr>
<td align="center" valign="center" width=40%>
<img src="goofy_nc.jpg" width=250 height=250 onmouseover="this.src='goofy_nc.hover.jpg'" onmouseout="this.src='goofy_nc.jpg'" />
<!-- <img src="goofy_nc.jpg" width=250 height=250 alt="description here" /> -->
</td>
<td align="left" valign="top">
<h2>Noah Carnahan</h2>
<p>
Noah hails from Montpelier, Vermont (the greatest state in our fair union).
He loves to program everything from browser extensions to games.
He enjoys nordic skiing, mountain biking, playing strategy games, and eating sugar on snow.
</p>
</td>
</tr>
<tr>
<td align="center" valign="center">
<img src="goofy_mh.jpg" width=250 height=250 onmouseover="this.src='goofy_mh_hover.jpg'" onmouseout="this.src='goofy_mh.jpg'" />
</td>
<td align="top" valign="top">
<h2>Marcus Huderle</h2>
<p>
Marcus is a fine product imported from Eden Prairie, MN. He loves to program Gameboy games as well
as normal-programmer things. You'll often spot Marcus playing
<em>Dominion</em> or <em>Tigris & Euphrates</em> when he's away from his laptop. He also
competed with the Fellahs on the Cross Country and Track & Field teams during his stay at Carleton.
</p>
</td>
</tr>
<tr>
<td align="center" valign="center">
<img src="goofy_nj.jpg" width=250 height=250 onmouseover="this.src='dln3.gif'" onmouseout="this.src='goofy_nj.jpg'" />
</td>
<td align="top" valign="top">
<h2>Nick Jones</h2>
<p>
Nick came to Carleton via Evanston, IL and double majored in math and
computer science. When not in the CMC, he enjoys playing soccer and basketball,
cooking, listening to early 2000s rap, and studying abroad in Budapest (but not
all at the same time).
</p>
</td>
</tr>
<tr>
<td align="center" valign="center">
<img src="cs.png" width=250 height=250 onmouseover="this.src='dln1.jpg'" onmouseout="this.src='cs.png'" />
</td>
<td align="top" valign="top">
<h2>Cole Stephan</h2>
<p>
Cole was born in Northfield and grew up in Edina, MN. He found his passion for CS
in the Math Skills Center at Carleton and never looked back. Cole is not Tony's
younger brother nor does he work in the Skillz Center anymore. Cole enjoys
traveling and sushi on friday nights while watching hockey and recommends that all
Carleton students take Intro Computer Science ASAP! QEDNBD.
</p>
</td>
</tr>
<tr>
<td align="center" valign="center">
<img src="tmt.jpg" width=250 height=250 onmouseover="this.src='dln2.jpg'" onmouseout="this.src='tmt.jpg'" />
</td>
<td align="top" valign="top">
<h2>Tony Tran</h2>
<p>
Tony came to Carleton from small town St. Cloud, MN. He took Intro to CS the term before declaring his major
and quickly fell in love with it. Outside of class, you can find Tony contra dancing late into the friday nights,
doing Tae Kwon Do, and working out at the math skills center. To clarify, that is Tony's younger cousin, not his child.
</p>
</td>
</tr>
<tr>
<td align="center" valign="center">
<img src="zwd.jpg" width=250 height=250 onmouseover="this.src='dln3.gif'" onmouseout="this.src='zwd.jpg'" />
</td>
<td align="top" valign="top">
<h2>Zach "Evolved Feature Two" Wood-Doughty</h2>
<p>
Zach spent his time at Carleton studying computer science, mathematics, and Latin America; playing hockey and volleyball and doing karate; and writing fiction, poetry, and lots of code.
</p>
</td>
</tr>
</table>
<p>
And a big thanks goes to our advisor David Liben-Nowell!
</p>
</div>
</div>
</body>
</html>