-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (96 loc) · 2.96 KB
/
index.html
File metadata and controls
117 lines (96 loc) · 2.96 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>full sample design free bug</title>
<link rel="stylesheet" href="assets/css/main.css">
<style>
.hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
color: white;
padding: 4rem 1rem;
text-align: center;
}
.theme-toggle {
position: absolute;
top: 1rem;
right: 1rem;
}
</style>
</head>
<body>
<div class="theme-toggle">
<label class="switch">
<input type="checkbox" id="theme-toggle">
<span class="slider">🌓</span>
</label>
</div>
<header class="hero">
<h1>full freeware free bug</h1>
<p>Your Complete Security tools Portal</p>
</header>
<main>
<div class="custom-announce">
<a href='tools/tool1/'> All Comingsoon :) Learn Note Info Here → </a>
</div>
<div class="grid">
<div class='card'>
<h3>Security Tool 1</h3>
<p>Essential for customized sec</p>
<a href='tools/tool1/'>Learn More →</a>
</div>
<div class='card'>
<h3>Security Tool 2</h3>
<p>Essential for Termux security</p>
<a href='tools/tool2/'>Learn More →</a>
</div>
<div class='card'>
<h3>Security Tool 3</h3>
<p>Essential for Termux security</p>
<a href='tools/tool3/'>Learn More →</a>
</div>
<div class='card'>
<h3>Security Tool 4</h3>
<p>Essential for Termux security</p>
<a href='tools/tool4/'>Learn More →</a>
</div>
<div class='card'>
<h3>Security Tool 5</h3>
<p>Essential for Termux security</p>
<a href='tools/tool5/'>Learn More →</a>
</div>
<h2 style="grid-column:1/-1;margin-top:2rem">Latest Posts</h2>
<div class='card'>
<h3>Post 1</h3>
<p></p>
<a href='posts/post1/'>Read Post →</a>
</div>
<div class='card'>
<h3>Post 2</h3>
<p></p>
<a href='posts/post2/'>Read Post →</a>
</div>
<div class='card'>
<h3>Post 3</h3>
<p></p>
<a href='posts/post3/'>Read Post →</a>
</div>
<div class='card'>
<h3>Post 4</h3>
<p></p>
<a href='posts/post4/'>Read Post →</a>
</div>
<div class='card'>
<h3>Post 5</h3>
<p></p>
<a href='posts/post5/'>Read Post →</a>
</div>
</div>
</main>
<footer style="text-align:center;padding:2rem;margin-top:2rem;border-top:1px solid var(--border)">
<p>Built with ♥ powered b453zsh</p>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>