-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (56 loc) ยท 1.81 KB
/
index.html
File metadata and controls
63 lines (56 loc) ยท 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>My Dev Toolbox | Prince Pathak</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="nav-logo">โ๏ธ Dev Toolbox</div>
<ul class="nav-links">
<li><a href="#tools">Tools</a></li>
<li><a href="#stack">Tech Stack</a></li>
<li><a href="#contact">Connect</a></li>
</ul>
</nav>
<!-- Hero -->
<header class="hero">
<h1>๐งฐ My Dev Toolbox</h1>
<p>These are the tools and technologies I use to build magic on the web and beyond.</p>
</header>
<!-- Tools Section -->
<section id="tools" class="section">
<h2>๐ง Essentials I Use</h2>
<div class="card-grid">
<div class="card">๐ป VS Code</div>
<div class="card">๐ GitHub</div>
<div class="card">๐ ChatGPT</div>
<div class="card">๐ Replit</div>
</div>
</section>
<!-- Tech Stack Section -->
<section id="stack" class="section alt">
<h2>๐ Tech Stack</h2>
<div class="card-grid">
<div class="card">๐ HTML5</div>
<div class="card">๐จ CSS3</div>
<div class="card">๐ Python</div>
<div class="card">๐ฎ Tkinter</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<h2>๐ฌ Let's Connect</h2>
<div class="contact-links">
<a href="https://github.com/princepathak25" target="_blank">๐ป GitHub</a>
<a href="https://linkedin.com/in/prince-pathak-142651373" target="_blank">๐ LinkedIn</a>
</div>
</section>
<footer class="footer">
<p>Made with โค๏ธ by Prince Pathak | ยฉ 2025</p>
</footer>
</body>
</html>