-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 2.02 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
<!DOCTYPE html>
<html>
<head>
<title>sfhacks github pages</title>
<link rel = 'icon' href = 'favicon.png'/>
<style type = 'text/css'>
* {
font-family: Helvetica;
}
div {
margin: 0 auto;
text-align: center;
}
a {
color: #2222DD;
text-decoration: none;
}
h1 {
margin-top: 0;
}
.list {
width: 260px;
}
.list h3 {
margin-bottom: 0px;
}
.list ul {
text-align: left;
margin-top: 5px;
}
</style>
</head>
<body>
<div>
<img src = 'favicon.png'/>
<h1>sfhacks github pages</h1>
<div class = 'list'>
<h3 style = 'font-size: 20px;'>Helpful Links</h3>
<ul>
<li><a href = 'http://www.sfhacks.club' target = '_blank'>Official Club Website</a></li>
<li><a href = 'https://github.com/sfhacks' target = '_blank'>GitHub Organization</a></li>
<li><a href = 'https://docs.google.com/a/sfhs.com/spreadsheets/d/11KJffrhBxWeUaiinBYQmhyRss_YMSi3dZtxlIz7ScT4/edit?usp=sharing' target = '_blank'>Attendance Sheet</a></li>
<li><a href = 'resources' target = '_blank'>Resources Page</a></li>
<li>
<a href = 'http://results.sfhacks.club' target = '_blank'>Live Results</a>
<ul>
<li>Encryption Challenge</li>
<li>Chat App</li>
</ul>
</li>
</ul>
</div>
<div class = 'list'>
<h3>WebDev Demos</h3>
<ul>
<li><a href = 'demos/day1.html' target = '_blank'>Day 1 - Basic HTML</a></li>
<li><a href = 'demos/day2.html' target = '_blank'>Day 2 - Basic CSS</a></li>
<li><a href = 'demos/day3.html' target = '_blank'>Day 3 - Advanced HTML/CSS</a></li>
<li><a href = 'demos/day4' target = '_blank'>Day 4 - Personal Website</a></li>
</ul>
</div>
</div>
</body>
</html>