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
|
<!DOCTYPE html>
<html>
<!-- NAVIGATION BAR-->
<?php include "header.html";?>
<?php include "title.html";?>
<div class="center">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Contact information</h3>
</div>
<div class="panel-body">
<p>Science and web application by <a href="http://marianattestad.com" target="_blank">Maria Nattestad</a></p>
<p>Principal investigator / The Boss: <a href="http://schatzlab.cshl.edu" target="_blank">Mike Schatz</a></p>
<br>
<p>For questions, email: <a href="mailto:mnattest@cshl.edu?Subject=Question%20About%20Assemblytics" target="_top">mnattest@cshl.edu</a></p>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
|