-
Notifications
You must be signed in to change notification settings - Fork 35
/
about.html
102 lines (88 loc) · 6.07 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
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Lakshya CTF</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="css/bootstrap4-neon-glow.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel='stylesheet' href='//cdn.jsdelivr.net/font-hack/2.020/css/hack.min.css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body class="imgloaded">
<div class="glitch">
<div style="position: fixed;" class="glitch__img"></div>
<div style="position: fixed;" class="glitch__img"></div>
<div style="position: fixed;" class="glitch__img"></div>
<div style="position: fixed;" class="glitch__img"></div>
<div style="position: fixed;" class="glitch__img"></div>
</div>
<div class="navbar-dark text-white">
<div class="container">
<nav class="navbar px-0 navbar-expand-lg navbar-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a href="index.html" class="pl-md-0 p-3 text-decoration-none text-light">
<h3 class="bold"><span class="color_danger">LAKSHYA</span><span class="color_white">CTF</span></h3>
</a>
</div>
<div class="navbar-nav ml-auto">
<a href="index.html" class="p-3 text-decoration-none text-light bold">Home</a>
<a href="about.html" class="p-3 text-decoration-none text-light bold">About</a>
<a href="hackerboard.html" class="p-3 text-decoration-none text-light bold">Hackerboard</a>
<a href="login.html" class="p-3 text-decoration-none text-light bold">Login</a>
<a href="register.html" class="p-3 text-decoration-none text-light bold">Register</a>
</div>
</div>
</nav>
</div>
</div>
<div class="jumbotron bg-transparent mb-0 pt-3 radius-0">
<div class="container">
<div class="row">
<div class="col-xl-12">
<h1 class="display-1 bold color_white content__title text-center"><span class="color_danger">ABOUT</span>US<span class="vim-caret"> </span></h1>
<p class="text-grey text-spacey text-center hackerFont lead">
A community of like minded individuals who support cybersecurity and FOSS.
</p>
<div class="row justify-content-center hackerFont">
<div class="col-md-8">
<h5 class="bold color_white pt-3">
What is Capture the Flag?
</h5>
A capture the flag (CTF) contest is a special kind of cybersecurity competition designed to challenge its participants to solve computer security problems and/or capture and defend computer systems. The game consists of a series of challenges where participants
must reverse engineer, break, hack, decrypt, or do whatever it takes to solve the challenge. The challenges are all set up with the intent of being hacked, making it an excellent, legal way to get hands-on experience.
<h5 class="bold color_white pt-3">
About Lakshya CTF
</h5>
Lakshya CTF is a sub event of PICT's <a href="https://pictinc.org">Impetus and Concepts</a> mega event where students partcipate from all over the world!<br> Out aim is about spreading the importance of cybersecurity in today's
community. Each and every person should be aware of different vulnerabilities in systems as well as how to protect onselves agains cyber attacks<br> We believe gamification is the best technique to teach oneself about cybersecurity.
<h5 class="bold color_white pt-3">
Who can play Lakshya CTF
</h5>
Lakshya CTF is mainly focused at students who are undergraduates.
<div class="row text-center pt-5">
<div class="col-xl-12">
<button class="btn btn-outline-danger btn-shadow px-3my-2 ml-0 ml-sm-1 text-left typewriter" onclick="(function(){window.location.href='login.html'})();">
<h4>LET IT RIP!</h4>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>