-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
91 lines (78 loc) · 3.6 KB
/
Copy pathabout.html
File metadata and controls
91 lines (78 loc) · 3.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Niraj Kumar</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About me</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="skill.html">Skills</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<section id="about">
<div class="about-container">
<div class="about-content">
<h2>I engineer <span class="highlight">robust systems</span> and <span class="highlight">explore the limits of machine learning.</span></h2>
<p>
Hello! I am <strong>Niraj Kumar</strong>, a 3rd year Undergraduate at <strong>IIT Gandhinagar</strong>. I am a developer and researcher who loves getting under the hood of complex problems.
</p>
<p>
I thrive on developing interactive, real-time <strong>web applications</strong> , but my core passion lies deeper in the stack: tackling Advanced <strong>DSA</strong>, scalable <strong>system design</strong>, and exploring vulnerabilities in <strong>Machine Learning</strong> models.
Currently, I am deeply focused on Machine Learning security, specifically building adversarial pipelines and defending <strong>Explainable AI (XAI)</strong> frameworks.
</p>
<p>
When I'm not coding, I am likely exploring some real world applications of what I am learning.
</p>
<div class="info-grid">
<div class="info-item">
<h4>Education</h4>
<span>B.Tech CSE, IIT Gandhinagar</span>
</div>
<div class="info-item">
<h4>Interests</h4>
<span>DSA, Web and ML</span>
</div>
<div class="info-item">
<h4>Location</h4>
<span>Gandhinagar, India</span>
</div>
<div class="info-item">
<h4>Status</h4>
<span>Open to Internships</span>
</div>
</div>
</div>
<div class="about-image">
<img src="./assets/Niraj.jpg" alt="Niraj Kumar">
</div>
</div>
</section>
<script>
const hamburger = document.querySelector(".hamburger");
const navMenu = document.querySelector(".nav-list");
hamburger.addEventListener("click", () => {
hamburger.classList.toggle("active");
navMenu.classList.toggle("active");
});
// Close menu when a link is clicked
document.querySelectorAll(".nav-list li a").forEach(n => n.addEventListener("click", () => {
hamburger.classList.remove("active");
navMenu.classList.remove("active");
}));
</script>
</body>
</html>