-
Notifications
You must be signed in to change notification settings - Fork 0
/
ctf.html
executable file
·43 lines (38 loc) · 1.1 KB
/
ctf.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="cache-control" content="private, max-age=86400">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hackers' eXciting Academy - HeXA</title>
<script src="lib/js/jquery-2.2.0.min.js"></script>
<script src="lib/js/jquery.pjax.js"></script>
<script src="js/hexa.js"></script>
<link rel="stylesheet" href="css/hexa.css">
<link rel="stylesheet" href="css/animation.css">
<link rel="shortcut icon" href="img/favicon.png">
</head>
<body>
<section id="header" class="header header-down">
<div class="container">
<div id="header-logo-box">
<div class="header-hexa-logo"></div>
<span class="header-page-label">CTF</span>
</div>
</div>
</section>
<section id="content-body">
<div id="content">
<div class="container content-container">
CTF도 하고!
</div>
</div>
<script>
setTitle('CTF');
pageOpen();
</script>
</section>
<section id="footer">
</section>
</body>
</html>