-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
79 lines (77 loc) · 3.06 KB
/
news.html
File metadata and controls
79 lines (77 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>News</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Research Lab, Home, Velit Aliquet Sagittis University">
<meta name="author" content="">
<!-- Le styles -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/theme.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="jumbotron subhead" id="overview">
<p class="lead"> Velit Aliquet Sagittis University </p>
<h1>Experimental Research Lab</h1>
</header>
<div class="masthead">
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="people.html">People</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li class="active"><a href="#">News</a></li>
<li><a href="teaching.html">Teaching</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<hr>
<footer id="footer">
<div class="container-fluid">
<div class="row-fluid">
<div class="span5">
<h3>Contact Information</h3>
<p><b>Office Hours: </b>Monday-Friday (8.00am - 5.00pm)</p>
<p><b>Phone: </b>999-999-9999</p>
<p><b>Cell: </b>999-999-9999</p>
<a href="mailto:your.email@uni.edu">Email</a>
</div>
<div class="span2">
<a href="https://mybrandnewlogo.com/"><img src = "thumbs/generic-logo.JPG" alt="research-lab-logo"/></a>
</div>
<div class="span5">
<h3>Address</h3>
<p>9999 Generic Research Laboratory<br>
999 Fake Street Avenue<br>
City, State<br>
Country ZIP
</p>
<a href="http://maps.google.com/">Show Map</a>
</div>
</div>
</div>
</footer>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script>
$(document).ready(function() {
$(document.body).scrollspy({
target: "#navparent"
});
});
</script>
</body>
</html>