-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (67 loc) · 1.99 KB
/
index.html
File metadata and controls
85 lines (67 loc) · 1.99 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
80
81
82
83
84
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="css/vendor/fluidbox.min.css">
<link rel="stylesheet" href="css/main.css">
<title>SIGOPS ACM@UIUC</title>
</head>
<body>
<header>
<div id="logo-container">
<div id="logo"><a href="index.html"><img src="img/logo-256.png"></a></div>
<div id="subtitle">A Special Interest Group for Operating Systems</div>
</div>
<nav id="logo-container">
<ul>
<li><a href="pages/tutorials.html">Tutorials</a></li>
<li><a href="pages/projects.html">Projects</a></li>
<li><a href="pages/about.html">About</a></li>
</ul>
</nav>
</header>
<div id="content">
<section class="intro">
<h1>Welcome to SIGOPS<span class="nl"></span></h1>
<p>
We are a special interest group dedicated to Operating Systems, Distributed Computing, Systems Programming, and anything related to these topics.
</p>
</section>
<section class="row">
<div class="col-full">
<h2>Meeting Times</h2>
<p>
We meet every <b>Monday, at 7PM, in room 4405 at the Siebel Center.</b>
</p>
</div>
</section>
<section class="row">
<div class="col-full">
<h2>Contact</h2>
<p>
Questions? Concerns? Comments? Just send us an <a href="mailto:sigops-l@acm.Illinois.edu">email</a>.
</p>
</div>
</section>
<section class="row">
<div class="col-full">
<p>
2016 - A Special Interest Group of <a href="http://www-s.acm.illinois.edu">ACM@UIUC</a>
</p>
</div>
</section>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
if (!window.jQuery)
{
document.write('<script src="js/vendor/jquery.1.11.min.js"><\/script>');
}
</script>
<script src="js/vendor/jquery.fluidbox.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>