-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
126 lines (106 loc) · 6.03 KB
/
experience.html
File metadata and controls
126 lines (106 loc) · 6.03 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
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Harsh Khandal | Experience</title>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/experience.css">
<link rel="icon" href="/assets/images/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="header-placeholder"></div>
<main class="container">
<h1 class="page-title">/Operational_History</h1>
<div class="timeline-container">
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="exp-card">
<div class="exp-header">
<div class="role-info">
<h3>Founder & CEO</h3>
<span class="company">PustakMart (Startup Test)</span>
</div>
<span class="duration">May 2025 - Present</span>
</div>
<p class="short-desc">Engineered a full-scale e-commerce platform using WordPress and WooCommerce to facilitate the buying and selling of used books.</p>
<button class="expand-btn" onclick="toggleDetails(this)">View_Insights [+]</button>
<div class="extra-details">
<h4>/Learnings</h4>
<p>Developed and scaled PustakMart, an organic e-commerce platform, where I mastered WordPress development and SEO while navigating the Indian consumer market, startup networking, and government support ecosystems to drive sales with zero marketing spend.</p>
<h4>/Status</h4>
<p class="status-success">ACTIVE - Scaling platform, Understanding Customers response on Different Actions and refining user experience.</p>
<h4>/Link</h4>
<p><a href="https://pustakmart.com/" style="color: white;" target="_blank">Pustakmart.com</a></p>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="exp-card">
<div class="exp-header">
<div class="role-info">
<h3>Cyber Security and Python Intern</h3>
<span class="company">ShadowFox</span>
</div>
<span class="duration">Nov 2024 - Dec 2024</span>
</div>
<p class="short-desc">Intensive internship focused on Python and CyberSecurity</p>
<button class="expand-btn" onclick="toggleDetails(this)">View_Insights [+]</button>
<div class="extra-details">
<h4>/Learnings</h4>
<p>Automated security tasks using Python scripts. Gained hands-on experience in vulnerability assessment and penetration Testing.</p>
<h4>/Status</h4>
<p class="status-success">SUCCESS - Completed all deliverables and certificate earned.</p>
<h4>/Certificates</h4>
<p>
<a href="viewer.html?file=assets/experience/ShadowFox-Python.pdf" style="color: white;">Python Development Certificate</a>
<br>
<br>
<a href="viewer.html?file=assets/experience/ShadowFox-Cyber.pdf" style="color: white;">CyberSecurity Certificate</a>
</p>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot"></div>
<div class="exp-card">
<div class="exp-header">
<div class="role-info">
<h3>Cyber Security & Ethical Hacking Intern</h3>
<span class="company">CFSS</span>
</div>
<span class="duration">Aug 2024 - Sep 2024</span>
</div>
<p class="short-desc">Cyber & Forensics Security Solutions - Penetration Testing.</p>
<button class="expand-btn" onclick="toggleDetails(this)">View_Insights [+]</button>
<div class="extra-details">
<h4>/Learnings</h4>
<p>Deep dive into network forensics and web application security testing.</p>
<h4>/Status</h4>
<p class="status-success">SUCCESS - Successfully identified vulnerabilities in test environments.</p>
<h4>/Certificate</h4>
<p><a href="viewer.html?file=assets/experience/CFSS-Cyber.png" style="color: white;">CFSS Certificate</a></p>
<p><a href="viewer.html?file=assets/experience/CFSS_LOR.png" style="color: white;">CFSS Letter of Recommendation</a></p>
</div>
</div>
</div>
</div>
</main>
<script src="js/main.js"></script>
<script>
function toggleDetails(btn) {
const card = btn.parentElement;
card.classList.toggle('active');
btn.innerText = card.classList.contains('active') ? "Close_Insights [-]" : "View_Insights [+]";
}
</script>
<footer class="footer">
<div class="footer-content">
<p>© 2026 Harsh Khandal.<br><br>All Systems Operational <span class="footer-pulse"></span></p>
</div>
</footer>
</body>
</html>