-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (46 loc) · 1.36 KB
/
index.html
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
<html>
<head>
<title> Title </title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
</head>
<body>
<div class="header">
<a href="" class="logo"><img src="transparentSCCLogo.png" class="logo-img"></a>
</div>
<div class="navbar">
<a class="active" href='#home'>Home</a> <div class="divider"></div>
<a class="calendar" href='calendar.html'>Calendar</a> <div class="divider"></div>
<a href="#contact">Contact</a> <div class="divider"></div>
<a href="#about">About</a>
</div>
<div class="qcalendar">
<div id="accSticky">
<li class="sticky">
<a href="#">
<h2>Title #1</h2>
<p>Text Content #1</p>
</a>
</li>
</div>
<div id="csiSticky">
<li class="sticky">
<a href="#">
<h2>Title #1</h2>
<p>Text Content #1</p>
</a>
</li>
</div>
<div id="magdSticky">
<li class="sticky">
<a href="#">
<h2>Title #1</h2>
<p>Text Content #1</p>
</a>
</li>
</div>
</div>
<div class="clubs">
</div>
</body>
<html>