-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
92 lines (76 loc) · 4.39 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
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>
<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 id="preloader">
</div>
<div id="main">
<div class="glitch">
<div class="glitch__img"></div>
<div class="glitch__img"></div>
<div class="glitch__img"></div>
<div class="glitch__img"></div>
<div 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-white 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-8">
<h1 class="display-1 bold color_white content__title">LAKSHYA CTF<span class="vim-caret"> </span></h1>
<h1 class="display-1 bold color_white content__title2">INC 2020</h1>
</div>
</div>
<div class="row">
<div class="col-xl-4">
<p class="mt-5 text-grey text-spacey hackerFont lead">
The quieter you become the more you are able to hear.
</p>
<button class="btn btn-outline-danger btn-shadow px-3 my-2 ml-0 ml-sm-1 text-left typewriter" onclick="(function(){window.location.href='login.html'})();">
<h4>Login</h4>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" 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>
<script src="js/preloader.js"></script>
</body>
</html>