-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
45 lines (45 loc) · 1.5 KB
/
schedule.html
File metadata and controls
45 lines (45 loc) · 1.5 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
<!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">News</a></li>
<li><a href="/schedule.html" class="active">Schedule</a></li>
</ul>
</div>
<div id="content">
<h1>Schedule</h1>
<table id="schedule">
<tr>
<td>Name</td>
<td>Location</td>
<td>Date</td>
</tr>
<tr>
<td>Distributions Talk and Group Projects</td>
<td>Robinson A206</td>
<td>10/24/13 7:00pm - 9:00pm</td>
</tr>
<tr>
<td>Revolution OS Screening</td>
<td>JC Cinema</td>
<td>10/27/13 9:15pm - 11:00pm</td>
</tr>
</table>
</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>