forked from shuvadeepmondal/HacKerZGuiDe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (86 loc) · 4.19 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
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HackeRZGuide - Your go-to resource for hacking, coding, and tech guides.">
<title>HackeRZGuide - Futuristic Tech Hub</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<a href="#home">HackeRZGuide</a>
</div>
<div class="nav-container">
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li class="dropdown">
<a href="#categories" class="dropdown-toggle">Categories</a>
<ul class="dropdown-menu">
<li><a href="#hacking">Hacking</a></li>
<li><a href="#coding">Coding</a></li>
<li><a href="#tech">Tech Trends</a></li>
</ul>
</li>
<li><a href="#resources">Resources</a></li>
<li><a href="quiz.html">Quiz</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contribute">Contribute</a></li>
</ul>
<div class="search-bar">
<input type="text" placeholder="Search..." aria-label="Search">
</div>
</div>
</nav>
</header>
<main>
<section class="hero">
<h1>Welcome to HackeRZGuide </h1>
<p>"Hack it, Crack it, Master it"</p>
<div class="button">
<a href="#resourece" class="Explore">Explore Resource</a>
<a href="#contribute" class="Contribute">Contribute now</a>
</div>
</section>
<section id="about" class="content-section fade-in">
<h2 class="section-title">About Us</h2>
<p class="about-text">HackeRZGuide is your go-to hub for mastering ethical hacking, programming, and exploring cutting-edge technologies. Our comprehensive guides are designed to empower enthusiasts of all levels with the skills they need to excel in the ever-evolving tech world.</p>
</section>
<section id="guides" class="content-section fade-in">
<h2 class="section-title">Featured Guides</h2>
<div class="guide-grid">
<div class="guide-card">
<h3 class="guide-title">Cybersecurity Basics</h3>
<p class="guide-description">Learn the art of securing your digital assets with practical insights and tools.</p>
</div>
<div class="guide-card">
<h3 class="guide-title">Coding 101</h3>
<p class="guide-description">Dive into the world of programming with step-by-step tutorials tailored for beginners.</p>
</div>
<div class="guide-card">
<h3 class="guide-title">Network Penetration</h3>
<p class="guide-description">Master ethical hacking techniques to test and fortify network security.</p>
</div>
</div>
</section>
<section id="contact" class="content-section fade-in">
<h2 class="section-title">Contact Us</h2>
<p class="contact-text">We’d love to hear your questions, suggestions, or feedback. Get in touch anytime!</p>
<div class="button-container">
<a href="mailto:[email protected]" class="cta-button">Get in Touch</a>
</div>
</section>
</main>
<footer>
<p>© 2025 HackeRZGuide. All rights reserved.</p>
<div class="social-icons">
<a href="#" class="icon facebook" aria-label="Facebook"></a>
<a href="#" class="icon twitter" aria-label="Twitter"></a>
<a href="#" class="icon linkedin" aria-label="LinkedIn"></a>
<a href="#" class="icon github" aria-label="GitHub"></a>
</div>
</footer>
</body>
</html>