-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (73 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CyberToolkit</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<header class="navbar navbar-dark bg-dark">
<div class="container-fluid d-flex justify-content-between align-items-center">
<a class="navbar-brand text-light head-title m-0" href="/">CyberToolkit</a>
<a class="navbar-brand m-0" href="https://github.com/itspatkar/CyberToolkit" target="_blank" rel="noopener noreferrer">
<i class="bi bi-github"></i>
</a>
</div>
</header>
<main>
<div class="container my-4">
<!-- About -->
<div class="about my-4">
<p>A Curated Collection of <span id="counter">0</span>+ Cybersecurity & Privacy Tools</p>
</div>
<!-- Search Box -->
<div class="search-box my-4" role="search">
<div class="search-icon">
<i class="bi bi-search"></i>
</div>
<label for="search" class="visually-hidden">Search Tools</label>
<input type="text" id="search" class="form-control" placeholder="Search for anything" aria-label="Search tools">
</div>
<!-- Filter Section -->
<section id="filters" class="filter-box my-4 p-1">
<div class="filter-item">
<h6>Title</h6>
<div>
<button type="button" class="btn btn-primary btn-sm" data-tag="tag">Tag</button>
</div>
</div>
<div class="filter-item">
<button type="button" class="btn btn-dark btn-sm" data-tag="reset">RESET</button>
</div>
</section>
<!-- List Section -->
<section id="dataList" class="lists my-4">
<div class="list-item shadow-sm">
<h6 class="title">Title</h6>
<div class="text-muted">Description</div>
<div>
<a href="#" target="_blank">Link</a>
</div>
<div class="d-flex flex-wrap">
<span class="alert alert-primary" data-tag="tag">Tag</span>
</div>
</div>
</section>
</div>
</main>
<!-- Bootstrap JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- Custom JS -->
<script src="assets/js/script.js"></script>
</body>
</html>