-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
executable file
·80 lines (80 loc) · 2.67 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
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
<!DOCTYPE html>
<!--
TODO List:
Add (rest of) responsive formatting. Maybe make it nicer
Contact page (Zach is working on this)
Calendar page. Visually show upcoming events, on a nice calendar page.
NOT Google Calendar. I want to use our own.
Add seamless transitioning between pages
And as always, send pull requests!
-->
<html lang="en-US">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css" />
<script src="javascript/smoothscroll.js"></script>
<title>Stevens Computer Science Club</title>
</head>
<body>
<header>
<nav>
<ul>
<li><h1><a href="#">SC<span class="superscript">2</span></a></h1></li>
<li><a href="#about">About Us</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="contact.php">Contact Us</a></li>
<li><a href="calendar.php">Calendar</a></li>
</ul>
</nav>
</header>
<img src="images/logo.png" alt="logo" />
<span class="club"><h1>SCSC</h1></span>
<section id="about">
<h2>About Us</h2>
<article id="whoarewe">
<h3>Who are we?</h3>
<ul>
<li>I don't know</li>
<li>Some placeholders</li>
</ul>
</article>
<article id="whatwedo">
<h3>What do we do?</h3>
<ul>
<li>Write code</li>
<li>Idk</li>
<li>Do we want bullets for this?</li>
<li><b>AHHHH</b></li>
</ul>
</article>
<article id="somethingelse">
<h3>Something else here</h3>
<ul>
<li>test</li>
<li>test</li>
<li>Hello, world!</li>
</ul>
</article>
</section>
<section id="events">
<h2>Events</h2>
<article>
<p>Speaker coming to campus in November!</p>
</article>
</section>
<section id="projects">
<h2>Projects</h2>
<article>
<p>A project</p>
</article>
<article>
<p>Another project</p>
</article>
</section>
<footer>
Some social media stuff here, orgsync, idfk
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</body>
</html>