-
Notifications
You must be signed in to change notification settings - Fork 1
/
dhsctf.html
89 lines (80 loc) · 3.2 KB
/
dhsctf.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
<!DOCTYPE HTML>
<!--
Introspect by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<!-- This code has been commented to make it easy to understand for those with low amounts of HTML knowledge. Have fun looking through the code! :D -->
<html>
<head>
<title>DHS Programming</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <!-- makes sure resizing the window doesn't mess with the site -->
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!-- Header -->
<header id="header"> <!-- banner providing links for easy navigation between home, about, and projects-->
<div class="inner">
<a href="index.html" class="logo">DHS Programming</a>
<nav id="nav">
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="about.html">About</a>
</nav>
</div>
</header>
<a href="#menu" class="navPanelToggle"><span class="fa fa-bars"></span></a>
<!-- Main -->
<section id="main">
<div class="inner">
<header class="major special">
<h1>DHS CTF</h1>
<p>DHS CTF 2018 has already been compleated. DHS CTF is a competiton of computer programming and a verity of other computer science skills. Be plan to create a newwer and more revamped version for next year </p>
</header>
<header>
<h3>Compete now</h3>
<p>Visit our competition site!</p>
</header>
<h4>Actions</h4>
<ul class="actions">
<li><a href="https://tgc-tech.github.io/DHS_CTF/landingPage.html" class="button alt">Compete now!</a></li> <!-- link to join Google Classroom. (if possible, make this a direct link to join) -->
</ul>
</div>
</div>
</section>
<!-- Footer -->
<section id="footer">
<div class="inner">
<!--<header> This is the code for the footer. It's useless and doesn't work, so it has been commented out
<h2>Get in Touch</h2>
</header>
<form method="post" action="#">
<div class="field half first">
<label for="name">Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="field half">
<label for="email">Email</label>
<input type="text" name="email" id="email" />
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message" rows="6"></textarea>
</div>
<ul class="actions">
<li><input type="submit" value="Send Message" class="alt" /></li>
</ul>
</form>-->
<div class="copyright"> <!-- Copyright disclaimer for the template used. We can add a DHS Programming Club copyright later if we want -->
© Untitled Design: <a href="https://templated.co/">TEMPLATED</a>. Images <a href="https://unsplash.com/">Unsplash</a>
</div>
</div>
</section>
<!-- Scripts --> <!-- Javascript Files that are used by this site -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>