-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
29 lines (29 loc) · 1.03 KB
/
news.html
File metadata and controls
29 lines (29 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<link href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" media="screen"> <!-- what does media="screen" mean? -->
<link rel="shortcut icon" href="http://gmulug.com/favicon.ico" type="image/x-icon">
<title>GMULUG</title>
</head>
<body>
<div id="header">
<div id="banner">
<img src="/img/gmuluglogo.png"/>
</div>
<ul id="navbar">
<li><a href="/index.html">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/news.html" class="active">News</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/resources.html">Resources</a></li>
</ul>
</div>
<div id="content">
<h1>News</h1>
</div>
<div id="footer">
<p>Copyright © 2013 The George Mason University GNU/Linux User Group. Updated 8/11/2013. <a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/us/">Some rights reserved.</a></span></p>
</div>
</body>
</html>