-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (147 loc) · 5.7 KB
/
index.html
File metadata and controls
170 lines (147 loc) · 5.7 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jatin Dhamija</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- ================= NAVBAR ================= -->
<header>
<nav class="navbar">
<h1 class="logo">JD</h1>
<ul class="menu">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- ================= HOME ================= -->
<section id="home" class="hero">
<h1 class="hero-title">
Hi, I'm <span class="highlight">Jatin Dhamija</span>
</h1>
<h2 class="hero-subtitle">Full Stack Developer</h2>
<p class="hero-text">
I build modern, responsive websites and web applications using clean
and efficient code. I enjoy turning ideas into real digital products
that work smoothly across web and mobile devices.
</p>
</section>
<!-- ================= ABOUT ================= -->
<section id="about" class="about">
<h2 class="section-title">About Me</h2>
<p class="about-text">
I’m Jatin Dhamija, a passionate Full Stack Developer who enjoys
turning ideas into scalable, real-world applications. I focus on
building clean, efficient, and user-centric solutions using modern web
technologies.
</p>
<p class="about-text">
I work across the full stack — from designing responsive user
interfaces to developing robust backend systems and APIs. I’ve built
complete web applications and mobile solutions, always keeping
performance, scalability, and code quality in mind.
</p>
<p class="about-text">
Problem-solving is at the core of my work. I believe in writing
maintainable code, following best practices, and continuously
improving through hands-on projects, learning new technologies, and
building solutions that create real impact.
</p>
</section>
<!-- ================= SKILLS ================= -->
<section id="skills" class="skills">
<h2 class="section-title">Skills</h2>
<ul class="skills-list">
<li class="skill-item">HTML</li>
<li class="skill-item">CSS</li>
<li class="skill-item">JavaScript</li>
<li class="skill-item">React.js</li>
<li class="skill-item">React Native</li>
<li class="skill-item">Tailwind CSS</li>
<li class="skill-item">NodeJS</li>
<li class="skill-item">Express.js</li>
<li class="skill-item">MongoDB</li>
<li class="skill-item">SQL</li>
<li class="skill-item">Cloud Firestore</li>
<li class="skill-item">Git</li>
<li class="skill-item">REST APIs</li>
<li class="skill-item">DSA</li>
</ul>
</section>
<!-- ================= EDUCATION ================= -->
<section id="education" class="education">
<h2 class="section-title">Education</h2>
<ul class="edu-list">
<!-- Graduation -->
<li class="edu-item">
<h3>
Bachelor of Technology
<span>(Computer Science & Engineering)</span>
</h3>
<p class="edu-institute">
Panipat Institute of Engineering and Technology
</p>
<ul class="edu-details">
<li class="edu-year">
<time datetime="2019">2019</time> –
<time datetime="2023">2023</time>
</li>
<li class="edu-percent">72%</li>
</ul>
</li>
<!-- 12th -->
<li class="edu-item">
<h3>Senior Secondary <span>(12th)</span></h3>
<p class="edu-institute">Arya Bal Bharti Public School</p>
<ul class="edu-details">
<li class="edu-year" datetime="2017-2018">2017-2018</li>
</ul>
</li>
<!-- 10th -->
<li class="edu-item">
<h3>Secondary School <span>(10th)</span></h3>
<p class="edu-institute">Arya Bal Bharti Public School</p>
<ul class="edu-details">
<li class="edu-year" datetime="2015-2016">2015-2016</li>
</ul>
</li>
</ul>
</section>
<!-- ================= CONTACT ================= -->
<section id="contact" class="contact">
<h2 class="section-title">Contact</h2>
<form class="contact-form">
<fieldset>
<legend>Write Your Message</legend>
<label for="name">Name</label>
<input type="text" id="name" placeholder="John Doe" />
<label for="email">Email</label>
<input type="email" id="email" placeholder="johndoe@gmail.com" />
<label for="message">Message</label>
<textarea
id="message"
rows="5"
placeholder="Your Message"
></textarea>
<button type="submit">Send</button>
</fieldset>
</form>
</section>
</main>
<!-- ================= FOOTER ================= -->
<footer class="footer">
<p>© JDCodebase <time datetime="2026">2026</time></p>
<nav aria-label="Footer social links">
<a class="social-icon" href="#">LinkedIn</a>
<a class="social-icon" href="#">GitHub</a>
</nav>
</footer>
</body>
</html>