-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
92 lines (85 loc) · 2.93 KB
/
about.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
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<head>
<title>TechSec | About</title>
<meta charset="utf-8" />
<meta name="description" content="TechSec is MIT's cybersecurity team dedicated to increasing knowledge/awareness of cybersecurity and participating in large cybersecurity (CTF) competitions" />
<meta name="keywords" content="cybersecurity, CTF, hacking, MIT, TechSec">
<meta name="og:description" content="TechSec is MIT's cybersecurity team dedicated to increasing knowledge/awareness of cybersecurity and participating in large cybersecurity (CTF) competitions" />
<meta property="og:title" content="TechSec" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="style.css" type="text/css" rel="stylesheet" />
<style>
#about-button {
text-decoration: underline;
}
</style>
<script type="text/javascript" src="script.js"></script>
</head>
<body onresize="adjustbuttons();">
<nav id="sidebar">
<div>
<img id="lock-logo" src="lock_logo.png" alt="techsec lock logo" />
</div>
<a href="index.html">
<div
id="home-button"
class="nav-button"
onmouseover="setWidth('home-button','100%');"
onmouseout="setWidth('home-button','95%');"
>
Home
</div>
</a>
<a href="about.html">
<div
id="about-button"
class="nav-button"
onmouseover="setWidth('about-button','100%');"
onmouseout="setWidth('about-button','95%');"
>
About
</div>
</a>
<a
href="https://github.com/TechSecCTF/meeting_notes/tree/master/Fall2018/09-27-18_cryptography"
target="_blank"
>
<div
id="meeting-button"
class="nav-button"
onmouseover="setWidth('meeting-button','100%');"
onmouseout="setWidth('meeting-button','95%');"
>
Fall 2018 Workshops
</div>
</a>
<a href="https://github.com/TechSecCTF/" target="_blank">
<div
id="github-button"
class="nav-button"
onmouseover="setWidth('github-button','100%');"
onmouseout="setWidth('github-button','95%');"
>
Github
</div>
</a>
</nav>
<section id="content">
<img id="techsec-logo" src="techsec_logo.png" alt="techsec name logo" />
<section>
<article class="post">
<h2>About Us</h2>
<p>
TechSec is MIT's premier security club. During the school year, we
hold meetings approximately every week. During the fall semester we
focus mostly on teaching security fundamentals. During the spring
semester we focus mostly on competing in
<a href="https://ctftime.org/ctf-wtf/" target="_blank">CTFs</a>. If
you're an MIT affliate, you can join our mailing list,
[email protected]. You can also join our slack at techsec-mit.slack.com,
which we mostly use for coordination during CTFs.
</p>
</article>
</section>
</section>
</body>