-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
116 lines (103 loc) · 4.18 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>VKC Lab: Contact</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:400,800" rel="stylesheet">
<!-- Bootstrap -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/contact.css" />
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">VKC Lab</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="people.html">People</a></li>
<li><a href="photos.html">Photos</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="etc.html">ETC</a></li>
<li class="active"><a href="#">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class='bg_contact'>
<div class='container banner'>
<div class='row'>
<div class='col-xs-2'></div>
<div class='col-xs-8' id='floating_logo'>
<img src='img/vkclogo.png' class='header_img'>
</div>
</div>
</div>
<div class='container bg'>
<h1>Contact</h1>
<div class='content'>
<div class='row '>
<div class='col-md-3'>
<img src='img/door.jpg'>
</div>
<div class='col-md-6'>
<table class='table-hover'>
<tr>
<td class='right_align'>Address</td>
<td>
Wellesley College
<br>VKC Lab
<br>Department of Biological Sciences
<br>106 Center Street
<br>Wellesley, MA 02481
</td>
</tr>
<tr>
<td class='right_align'>Lab phone</td>
<td>781-283-3765</td>
</tr>
<tr>
<td class='right_align'>Office phone</td>
<td>781-283-3541</td>
</tr>
<tr>
<td class='right_align'>Email</td>
<td>vklepacc [at] wellesley.edu</td>
</tr>
</table>
</div>
<div class='col-md-3'>
<img src='img/octopus.jpg'>
</div>
</div>
</div> <!-- end div content -->
</div> <!-- end div container -->
</div> <!-- end div bg_contact -->
<!-- foot -->
<footer>
<h6 class='center'>
Built by <a href='https://sunnyyy.bitbucket.io/'>Sunnia Ye '17</a>. Last updated in April 2017.
</h6>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</body>
</html>