-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
419 lines (368 loc) · 21.4 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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ansh's Portfolio</title>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<header class="header">
<a href="https://bit.ly/m/techbire" class="logo">techbire</a>
<i class="bx bx-menu" id="menu-icon"></i>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#portfolio">Portfolio</a>
<a href="https://www.techbire.blogspot.com">Blog</a>
<img src="assets/moon.png" id="icon">
</nav>
</header>
<!-- home section -->
<section class="home" id="home">
<div class="home-content" data-aos="fade-down">
<h1>Hello, I’m <span>Ansh</span></h1>
<title>Text Typing Effect</title>
<body>
<div id="text-container" class="border"></div>
</body>
<br>
<br>
<p>
I am working on developing professional and visually engaging web solutions, leveraging my strong programming skills in Python and C++. I have completed some impactful tech projects while also nurturing my passion for technology that began in 7th grade. Currently pursuing a B.Tech in CSE at Lovely Professional University, I am open to exciting opportunities in professional projects, research, and connecting with industry professionals.
</p>
<div class="social-media">
<a href="https://github.com/techbire"><i class="fa-brands fa-github"></i></i></a>
<a href="https://www.linkedin.com/in/techbire/"><i class='bx bxl-linkedin'></i></a>
<a href="https://www.facebook.com/techbire"><i class='bx bxl-facebook'></i></a>
<a href="https://www.instagram.com/techbire"><i class='fab fa-instagram'></i></a>
<a href="https://www.x.com/techbire"><i class='bx bxl-twitter'></i></a>
<a href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&[email protected]"><i class='bx bx-envelope' ></i>
</div>
<div class="btn-container">
<a href="assets/Resume-Ansh-Gupta.pdf" class="btn" id="download-btn">Download CV</a>
<a href="#contact" class="btn" id="hire-me-btn">Hire Me</a>
</div>
</div>
<div class="home-img"data-aos="fade-down">
<img src="assets/pic1.png" alt="">
</div>
</section>
<style>
* {
box-sizing: border-box;
}
/* Create three equal columns that float next to each other */
.column {
float: left;
width: 33.33%;
padding: 10px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Style for certification list */
.column ul {
list-style: none;
padding: 0;
}
.column li {
padding: 15px;
margin-bottom: 10px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.column a {
color: #007BFF;
text-decoration: none;
}
.column a:hover {
text-decoration: underline;
}
</style>
<!-- About section -->
<section class="about" id="about">
<div class="about-img" data-aos="fade-left">
<img src="assets/x.jpg" alt="">
</div>
<div class="about-content" data-aos="slide-left">
<h2 class="heading">About <span>Me</span></h2>
<p>I possess expertise as a Web Developer and have a deep enthusiasm for technology
that are both aesthetically pleasing and highly functional.
I am an expert in designing user-friendly and attractive interfaces. I am
proficient in a range of programming language including Python and C++. And have
experience with clients across a variety of industries.</p>
<div class="tab-titles" data-aos="fade-left">
<p class="tab-links active-link" onclick="opentab('experience')">Experience</p>
<p class="tab-links" onclick="opentab('education')">Education</p>
<p class="tab-links" onclick="opentab('certification')">Certification</p>
</div>
<div class="tab-contents active-tab" id="experience">
<ul>
<li><span>Headstarter AI</span><br>Software Engineering Fellow<br>Jul 2024 - Present</li>
<li><span>GirlScript Summer of Code 2024</span><br>Contributor<br>Apr 2024 - Aug 2024</li>
<li><span>Dailyhunt</span><br>Content Writer<br>May 2020 - Mar 2021</li>
<li><span>Techbire</span><br>Founder<br>Nov 2017 - May 2020</li>
</ul>
</div>
<div class="tab-contents" id="education">
<ul>
<li><span>2023-Present</span><br>Lovely Professional University <br>Phagwara, Punjab</li>
</ul>
</div>
<div class="tab-contents" id="certification">
<div class="row">
<div class="column">
<ul>
<li>
<span>freeCodeCamp</span><br>
Responsive Web Design<br>
Issued Sep 2023<br>
<a href="https://freecodecamp.org/certification/techbire/responsive-web-design" target="_blank">Certificate</a>
</li>
<li>
<span>Great Learning</span><br>
SQL for Data Science<br>
Issued Feb 2024<br>
<a href="https://d9jmtjs5r4cgq.cloudfront.net/ComplementaryCourseCertificate/4194139/original/ANSH_GUPTA20240219-69-mc1g9u.jpg" target="_blank">Certificate</a>
</li>
<li>
<span>AGI Scholars</span><br>
Generative AI Foundations Course<br>
Issued Mar 2024<br>
<a href="https://credsverse.com/credentials/76ac01cf-47aa-41d3-8332-0df17f556416" target="_blank">Certificate</a>
</li>
<li>
<span>University of Minnesota</span><br>
Software Development Processes and Methodologies<br>
Issued Apr 2024<br>
<a href="https://www.coursera.org/account/accomplishments/verify/HNFFLD5P2ZVF" target="_blank">Certificate</a>
</li>
<li>
<span>Accenture</span><br>
Accenture Nordics - Developer Job Simulation<br>
Issued May 2024<br>
<a href="https://forage-uploads-prod.s3.amazonaws.com/completion-certificates/Accenture%20Nordics/PxenP4rHNE6Bh4nQz_Accenture%20Nordics_5GsrbeBuftQm2Mdfp_1715528011313_completion_certificate.pdf" target="_blank">Certificate</a>
</li>
</ul>
</div>
<div class="column">
<ul>
<li>
<span>Google</span><br>
Crash Course on Python<br>
Issued Oct 2023<br>
<a href="https://www.coursera.org/account/accomplishments/verify/QMEZ4XFD33ZX" target="_blank">Certificate</a>
</li>
<li>
<span>University of California, Santa Cruz</span><br>
C for Everyone: Programming Fundamentals<br>
Issued Feb 2024<br>
<a href="https://www.coursera.org/account/accomplishments/verify/TFL723YYRPD2" target="_blank">Certificate</a>
</li>
<li>
<span>PW Skills</span><br>
Decode DSA with C++<br>
Issued Mar 2024<br>
<a href="https://pwskills.com/learn/certificate/8c5bddcf-fa9e-4785-9735-2de3bd2e9d30/" target="_blank">Certificate</a>
</li>
<li>
<span>freeCodeCamp</span><br>
Data Analysis with Python<br>
Issued Apr 2024<br>
<a href="https://www.freecodecamp.org/certification/techbire/data-analysis-with-python-v7" target="_blank">Certificate</a>
</li>
<li>
<span>Amazon Web Services (AWS)</span><br>
AWS Summit India 2024<br>
Issued May 2024<br>
<a href="https://drive.google.com/file/d/1gWe6mfohMic0mTMFo0JwsQV967tO9Vkg/view?usp=sharing" target="_blank">Certificate</a>
</li>
</ul>
</div>
<div class="column">
<ul>
<li>
<span>META</span><br>
Introduction to Front-End Development<br>
Issued Jan 2024<br>
<a href="https://www.coursera.org/account/accomplishments/verify/5DH2HCXXRWU9" target="_blank">Certificate</a>
</li>
<li>
<span>Division of Student Welfare - LPU</span><br>
HackWithVertos - 24 Hour Hackathon<br>
Issued Mar 2024<br>
<a href="https://drive.google.com/file/d/1d6EkiAEvWOEu5NiXw3JC7kab7q2_HeKG/view?usp=sharing" target="_blank">Certificate</a>
</li>
<li>
<span>HKUST</span><br>
Software Engineering: Implementation and Testing<br>
Issued Apr 2024<br>
<a href="https://www.coursera.org/account/accomplishments/verify/NXSP4AQ5R2LW" target="_blank">Certificate</a>
</li>
<li>
<span>iamneo (Formerly Examly)</span><br>
Computer Programming<br>
Issued May 2024<br>
<a href="https://lpucolab438.examly.io/certificate/U2FsdGVkX1%2FEeVfvMytV5MbK8rrh1Govg9xDvit1ebU%3D" target="_blank">Certificate</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- about section ends -->
<!-- Skills section -->
<section id="skills" class="services">
<div class="ser-title">
<h2 class="heading">My <span>Skills</span></h2>
</div>
<div class="services-box" data-aos="fade-left">
<div class="box" data-aos="fade-left">
<h2 style="text-align:left;font-size:x-large;color:#fd4766;">Languages </h2>
<div>
<figure class="item" style="display:inline-block;">
<a href="https://www.cprogramming.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/arasgungore/arasgungore/main/icons/c.svg" alt="c" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>C</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://www.cplusplus.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/arasgungore/arasgungore/main/icons/cplusplus.svg" alt="cplusplus" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>C++</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://www.python.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/python/python-original.svg" alt="python" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>Python</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg" alt="javascript" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>JavaScript</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://www.mysql.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/mysql/mysql-original-wordmark.svg" alt="mysql" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>MySQL</b></figcaption>
</figure>
</div>
</div>
<div class="box" data-aos="slide-right">
<h2 style="text-align:left;font-size:x-large;color:#fd4766;">Technologies </h2>
<figure class="item" style="display:inline-block;">
<a href="https://git-scm.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/arasgungore/arasgungore/main/icons/git.svg" alt="git" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>Git</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://www.linux.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/linux/linux-original.svg" alt="linux" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>Linux</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://cloud.google.com" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/googlecloud/googlecloud-original.svg" alt="googlecloud" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>Google Cloud Platform</b></figcaption>
</figure>
</div>
<div class="box" data-aos="fade-left">
<h2 style="text-align:left;font-size:x-large;color:#fd4766;">Libraries </h2>
<figure class="item" style="display:inline-block;">
<a href="https://numpy.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/arasgungore/arasgungore/main/icons/numpy.svg" alt="numpy" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>NumPy</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://pandas.pydata.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/pandas/pandas-original.svg" alt="pandas" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>Pandas</b></figcaption>
</figure>
<figure class="item" style="display:inline-block;">
<a href="https://nodejs.org" target="_blank" rel="noreferrer">
<img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/nodejs/nodejs-original.svg" alt="nodejs" width="40" height="40" />
</a>
<figcaption style="text-align:center;"><b>Node.js</b></figcaption>
</figure>
</div>
</div>
</section>
<!-- ======= End Skills Section ======= -->
<!-- projects section -->
<section class="portfolio" id="portfolio">
<h2 class="heading">Last <span>Projects</span></h2>
<div class="portfolio-container" data-aos="fade-right">
<div class="portfolio-card">
<img src="assets/project1.png" alt="" >
<div class="portfolio-details"data-aos="fade-right">
<h3>AGRICULTURE- <span>WEBSITE</span></h3>
<p>The Sustainable Agriculture Planner is a website using HTML, CSS and JS. It is designed to support sustainable farming practices. It provides a comprehensive set of features to assist farmers and stakeholders in planning, managing resources efficiently, and promoting sustainable agricultural development.</p>
</div>
<a href="https://github.com/techbire/agriculture-html" class="btn" >View Project</a>
</div>
<div class="portfolio-card">
<img src="assets/project2.png" alt="" data-aos="fade-left">
<div class="portfolio-details"data-aos="fade-left">
<h3>KBC: THE QUIZ <span>GAME</span></h3>
<p>Successfully completed the KBC: The Quiz Game project, infused with Amitabh Bachchan Sir's voice. This project showcases a wide range of Python's topics, including lists, conditionals, functions, and the Pygame library. The incorporation of Amitabh Bachchan's voice adds an engaging and authentic touch to the game, making it a standout creation.</p>
</div>
<a href="https://github.com/techbire/kbc" class="btn">View Project</a>
</div>
</div>
</section>
<!-- contact info section -->
<section class="contact" id="contact">
<h2 class="heading"> Contact <span>Me <i class='bx bx-message-dots'></i></span></h2>
<form action="https://formspree.io/f/mqkvvpjv"
method="POST">
<div class="input-box">
<input type="text" name="Name" placeholder="Full Name">
<input type="email" name="Email" placeholder="Email Address">
</div>
<textarea name="Message" id="" cols="30" rows="10" placeholder="Your Message"></textarea>
<input type="submit" value="Send Message" class="btn">
</form>
</section>
<!--Footer section -->
<footer class="footer">
<div class="footer-text">
<p>Made with <i style="color: red;" class="bx bx-heart"></i> by Ansh Gupta copyright © 2023 | All Rights Reserved.</p>
</div>
<div class="footer-iconTop">
<a href="#home"><i class="bx bx-up-arrow-alt"></i></a>
</div>
</footer>
<script src="script.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>