-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
347 lines (338 loc) · 13.5 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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio</title>
<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=Poppins:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="mediaqueries.css" />
</head>
<body>
<nav id="desktop-nav">
<div class="logo">HARSHITA RAJORIA</div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#fifthSection">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo">HARSHITA RAJORIA</div>
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about" onclick="toggleMenu()">About</a></li>
<li><a href="#experience" onclick="toggleMenu()">Skills</a></li>
<li><a href="#projects" onclick="toggleMenu()">Projects</a></li>
<li><a href="#contact" onclick="toggleMenu()">Contact</a></li>
</div>
</div>
</nav>
<section id="profile">
<div class="section__text">
<p class="section__text__p1">Hello, I'm</p>
<h1 class="title">Harshita Rajoria</h1>
<p class="section__text__p2">FrontEnd Developer</p>
<div class="btn-container">
<button
class="btn btn-color-1"
onclick="window.open('./assets/resume.pdf')"
>
DOWNLOAD CV
</button>
<button class="btn btn-color-1" onclick="location.href='#fifthSection'">
CONTACT
</button>
</div>
<div id="socials-container">
<img
src="./assets/linkedin.png"
alt="My linkedIn Profile"
class="icon"
onclick="location.href='https://www.linkedin.com/in/harshitarajoria27/'"
/>
<img
src="./assets/github.png"
alt="My GitHub Profile"
class="icon"
onclick="location.href='https://github.com/HARSHITARAJORIA'"
/>
</div>
</div>
</section>
<section id="about">
<p class="section__text__p1">Get To Know More</p>
<h1 class="title">ABOUT ME</h1>
<div class="section-container">
<div class="section__pic-container">
<img
src="./assets/harshita pic.jpg"
alt="profile-picture"
class="about-pic"
/>
</div>
<div class="about-details-container">
<div class="about-containers">
<div class="details-container-1">
<img
src="./assets/experience.png"
alt="experience icon"
class="icon"
/>
<h3>Experience</h3>
<p class="p-1">6 Month Experience <br />FrontEnd Development</p>
</div>
<div class="details-container-1">
<img
src="./assets/education.png"
alt="education icon"
class="icon"
/>
<h3>Education</h3>
<p class="p-1">B.Tech 2nd Year</p>
</div>
</div>
<div class="text-container">
<p>
Hello, I'm Harshita Rajoria, a second-year B.Tech Computer Science student with a passion for coding and a strong inclination towards innovation. Hailing from Agra, Uttar Pradesh, I completed my secondary and senior secondary education in the same city. <br>
Driven by curiosity, I enjoy delving into new technologies and staying abreast of the latest trends in the ever-evolving world of programming. Through hands-on projects and coursework, I have honed my skills in HTML, CSS, and JavaScript, and I recently developed a weather prediction website showcasing my proficiency in front-end development.
Beyond academics, I actively seek opportunities to contribute to open-source projects and engage in coding competitions to further sharpen my problem-solving abilities. With a strong foundation in computer science and a relentless passion for innovation, I am eager to embark on a journey towards becoming a proficient full-stack developer.
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='#experience'"
/>
</section>
<section id="experience">
<p class="section__text__p1">Explore My</p>
<h1 class="title">Skills</h1>
<div class="experience-details-container">
<div class="about-containers">
<div class="details-container">
<h2 class="experience-sub-title">Frontend Development</h2>
<div class="article-container">
<article>
<img
src="./assets/html.png"
alt="experience icon"
class="icon-1"
/>
<div>
<h3>HTML</h3>
<p>Experienced</p>
</div>
</article>
<article>
<img
src="./assets/css.png"
alt="experience icon"
class="icon-1"
/>
<div>
<h3>CSS</h3>
<p>Experienced</p>
</div>
</article>
<article>
<img
src="./assets/UI.png"
alt="experience icon"
class="icon-1"
/>
<div>
<h3>UI</h3>
<p>Beginner</p>
</div>
</article>
<article>
<img
src="./assets/js.png"
alt="experience icon"
class="icon-1"
/>
<div>
<h3>JavaScript</h3>
<p>Experienced</p>
</div>
</article>
<article>
<img
src="./assets/typescript.png"
alt="experience icon"
class="icon-1"
/>
<div>
<h3>TypeScript</h3>
<p>Intermediate</p>
</div>
</article>
</div>
</div>
<div class="details-container">
<h2 class="experience-sub-title">BackEnd Development</h2>
<div class="article-container">
<article>
<img
src="./assets/NJ.png"
alt="experience icon"
class="icon"
/>
<div>
<h3>Node Js</h3>
<p>Intermediate</p>
</div>
</article>
<article>
<img
src="./assets/EXJS.png"
alt="experience icon"
class="icon"
/>
<div>
<h3>Express Js</h3>
<p>Experienced</p>
</div>
</article>
<article>
<img
src="./assets/MONGO.png"
alt="experience icon"
class="icon"
/>
<div>
<h3>MongoDB</h3>
<p>Beginner</p>
</div>
</article>
<article>
<img
src="./assets/SQL.png"
alt="experience icon"
class="icon"
/>
<div>
<h3>SQL</h3>
<p>Beginner</p>
</div>
</article>
</div>
</div>
</div>
</div>
<img
src="./assets/arrow.png"
alt="Arrow icon"
class="icon arrow"
onclick="location.href='#projects'"
/>
</section>
<section id = projects>
<p class="section__text__p1">Browse My Recent</p>
<h1 class="title">Projects</h1>
<div class="flex-container">
<div class="project-img-container">
<img src="./assets/Railway.jpeg" alt="Project 1" class="project-img" />
</div>
<div class="project-content-container">
<h2 class="project-title title">Railway Management System</h2>
<p class="project-description">
The Railway Management System is a web application built with HTML, CSS, and JavaScript. It facilitates efficient train scheduling, ticket booking, and reservation management. The system includes features for user authentication, payment processing, and real-time updates on train statuses. It also provides reporting and analytics for administrators to make informed decisions. The responsive design ensures accessibility across different devices.
</p>
<div class="btn-container">
<button class="btn btn-color-1 project-btn">GitHub</button>
</div>
</div>
</div>
<div class="flex-container">
<div class="project-content-container">
<h2 class="project-title title">Netflix Clone</h2>
<p class="project-description">
A clone of the Netflix website that includes the homepage, the
sign-in page, and the browse page. The website is hosted on
Netlify.
</p>
</a>
<div class="btn-container">
<button class="btn btn-color-1 project-btn">GitHub</button>
</div>
</div>
<div class="project-img-container">
<img src="./assets/netflix1.jpg" alt="Project 2" class="project-img" />
</div>
</div>
<div class="flex-container">
<div class="project-img-container">
<img src="./assets/weather.jpg" alt="Project 3" class="project-img" />
</div>
<div class="project-content-container">
<h2 class="project-title title">
Weather Prediction Website
</h2>
<p class="project-description">
Designed and developed a dynamic weather prediction website using HTML, CSS, and JavaScript. Implemented user-friendly interfaces for seamless navigation and integrated real-time weather data to provide accurate forecasts. Demonstrated proficiency in front-end technologies and enhanced user experience through responsive design principles.
</p>
<div class="btn-container">
<button class="btn btn-color-1 project-btn">GitHub</button>
</div>
</div>
</div>
</section>
<section class="fifthSection" id="fifthSection">
<h1 class="title" style="color: crimson;">Contact</h1>
<div class="contact-details">
<h2>Get in touch with me</h2>
<ul>
<li><i class="fa fa-phone"></i><img src="./assets/phoneicon.png" alt="phoneicon" class="phoneicon"> Phone: +91 00000-00000</li>
<li><i class="fa fa-envelope"></i><img src="./assets/gmailicon.png" alt="gmailicon" class="gmailicon"> Email: rajoria.harshita27@gmail.com</li>
<li><i class="fa fa-linkedin"></i><img class="./assets/linkedinicon" src="linkedin_logo-removebg-preview.png" alt="linkedin"> <a href="https://www.linkedin.com/in/harshitarajoria27/" target="_blank">LinkedIn</a></li>
<li><i class="fa fa-facebook"></i><img src="./assets/fbicon.png" alt="fblogo" class="fbicon"><a href="#" target="_blank">Facebook</a></li>
<li><i class="fa fa-instagram"></i><img src="./assets/insta icon.png" alt="instaicon" class="instaicon"> <a href="#" target="_blank">Instagram</a></li>
<li><i class="fa fa-whatsapp"></i><img src="./assets/whatsapp icon.png" alt="whatsappicon" class="whatsappicon"> WhatsApp: +91 00000-00000</li>
</ul>
</div>
<div class="message-form">
<h2>Send a Message</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Send Message</button>
</form>
</div>
</section>
<footer>
<nav>
<div class="nav-links-container">
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#fifthSection">Contact</a></li>
</ul>
</div>
</nav>
<p>Copyright © 2024 Harshita Rajoria|All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>