-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
34 lines (33 loc) · 876 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link href="styles.css" rel="stylesheet" type="text/css"/>
<title>Branden Olson's Homepage</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js">
<script src="div_handler.js">
</script>
<script>
$(function(){
$("#sidebar").load("sidebar.html");
});
$(function(){ $("#foot").load("foot.html");
});
</script>
</head>
<body>
<div id="header"></div>
<div id="panel">
<div id="sidebar"></div>
</div>
<div id="maincontent">
<h2>Contact</h2>
<p>
E-mail: brando6 at uw dot edu
<br> <br>
UW office: A-314, Padelford Hall
<br> <br>
Fred Hutch office: M1-B855, Arnold Building
</p>
</div>
</body>
</html>