-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (83 loc) · 3.99 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.0">
<title>DevToolKit</title>
<link rel="stylesheet" href="style.css">
<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=Dancing+Script:[email protected]&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playwrite+HR:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<nav class="fixed-nav-bar">
<div class="nav-header">
<h2><span class="tech-bracket"><</span>DevToolKit<span class="tech-bracket">/></span></h2>
<div class="social-icons">
<a href="https://github.com/Nitesh-thapliyal" target="_blank"><img src="./assets/github-sign.png" alt="GitHub" class="social-icon github-icon"></a>
<a href="https://www.linkedin.com/in/nitesh-thapliyal" target="_blank"><img src="./assets/linkedin.png" alt="LinkedIn" class="social-icon linkedin-icon"></a>
<a href="https://x.com/Bauddhik_Geek" target="_blank"><img src="./assets/twitter.png" alt="Twitter" class="social-icon twitter-icon"></a>
</div>
</div>
</nav>
<div class="container">
<nav class="sidebar">
<ul class="resource-list">
<li class="resource-item active" data-target="home">Home</li>
<li class="resource-item" data-target="resume-templates">Resume Templates</li>
<li class="resource-item" data-target="books">Books</li>
</ul>
</nav>
<main class="content">
<div class="resource-details" id="home">
<div class="header">
<h2><span class="tech-bracket"><</span> Welcome to DevToolKit <span class="tech-bracket">/></span></h2>
</div>
<div class="content">
<p>DevToolKit is your ultimate hacker's companion for developer resources. Explore our curated collection of essential tools, documentation, and links to empower your coding journey.</p>
<div class="feature-grid">
<div class="feature">
<h3><i class="fas fa-code"></i> Code Snippets</h3>
<p>Access a vast library of reusable code snippets for various programming languages.</p>
</div>
<div class="feature">
<h3><i class="fas fa-shield-alt"></i> Security Tools</h3>
<p>Discover essential security tools and best practices for ethical hacking.</p>
</div>
<div class="feature">
<h3><i class="fas fa-book-open"></i> API Documentation</h3>
<p>Explore comprehensive API documentation for popular services and frameworks.</p>
</div>
</div>
</div>
</div>
<div class="resource-details" id="resume-templates">
<h2>Resume Templates</h2>
<p>Find a variety of resume templates to help you craft a standout application.</p>
<ul class="resume-list">
<li class="resume-item">
<a href="https://www.overleaf.com/latex/templates/jakes-resume/syzfjbzwjncs">Jake's Resume Template</a>
<div class="resume-preview-wrapper">
<img src="./assets/jakesResumeTemplate.png" alt="Jake's Resume Template" class="resume-preview">
</div>
</li>
<li class="resume-item">
<a href="https://www.overleaf.com/latex/templates/deedy-cv/bjryvfsjdyxz">Deedy CV Resume Template</a>
<img src="./assets/deedyCV.png" alt="Deedy CV Resume Template" class="resume-preview">
</li>
</ul>
</div>
<div class="resource-details" id="books">
<h2>Books</h2>
<p>Explore a curated list of books to enhance your developer skills.</p>
<ul>
<li>Clean Code by Robert C. Martin</li>
<li>The Pragmatic Programmer by Andrew Hunt and David Thomas</li>
</ul>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>