-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtools.html
91 lines (77 loc) · 3.28 KB
/
tools.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
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>TCA - Tools</title>
<meta name="description" content="An Information Security Student's Club at Rashtriya Raksha University">
<meta name="author" content="The Cyber Alliance - TCA">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="https://github.com/Mit-Patel/The-Cyber-Alliance/tree/master/css/bootstrap4-neon-glow.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/scrollbar.css">
<style>
html,
body {
margin: 0;
overflow-x: hidden;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #031321;
color: rgb(255, 255, 255, 0.9);
}
.cool1 {
justify-content: center;
width: 100%;
padding-right: 10%;
padding-left: 10%;
margin-right: auto;
margin-left: auto;
}
.button {
border-radius: 12px;
}
.meta span:after {
content: "";
display: inline-block;
width: 3px;
height: 3px;
border-radius: 50%;
background: #8f8f8f;
margin-left: 0.5rem;
margin-right: 0.5rem;
position: relative;
top: -3px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
</style>
<link rel="icon" type="image/png" href="media/favicon.png">
</head>
<body>
<header>
</header>
<div id="awareness">
</div>
<!-- <br> -->
<section class="blog-list px-3 py-5 p-md-5">
<h1 class="display-3 text-center" style="font-family:Courier;font-size: 40px;">Useful Tools</h1>
<div class="container" id="tools">
</div>
</section>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="js/script.js"></script>
<script>
$(document).ready(function() {
createNav(["", "", "", "active", "", ""], "");
createSubNav(["", "", "active", "", ""], "");
createTools();
// createFooter();
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</body>
</html>