-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
587 lines (570 loc) · 33.5 KB
/
index.html
File metadata and controls
587 lines (570 loc) · 33.5 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
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
<!DOCTYPE html>
<!-- Created By Ashutosh Sharma -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ashutosh Sharma's</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"/>
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo"><a href="#">Portfo<span>lio</span></a></div>
<ul class="menu">
<li><a href="#home" class="menu-btn">Home</a></li>
<li><a href="#about" class="menu-btn">About</a></li>
<li><a href="#services" class="menu-btn">Services</a></li>
<li><a href="#skills" class="menu-btn">Skills</a></li>
<li><a href="#projects" class="menu-btn">Projects</a></li>
<li><a href="#contact" class="menu-btn">Contact</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<!-- home section start -->
<section class="home" id="home">
<div class="max-width">
<div class="home-content">
<br><br><br><br>
<div class="text-1">Hello, my name is</div>
<div class="text-2">Ashutosh Sharma</div>
<div class="text-3">And I'm a <span class="typing"></span></div>
<a href="https://drive.google.com/file/d/1wqTKYBcMbuKb5bhHRiiWJrGJogb2GhHd/view?usp=sharing" target="_blank">Resume</a>
</div>
<div id="particles-js"></div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="particles.js"></script>
<script src="app.js" ></script>
</section>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.11/typed.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.1/jquery.waypoints.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<!-- about section start -->
<section class="about" id="about">
<div class="max-width">
<h2 class="title">About me</h2>
<div class="about-content">
<div class="column left">
<img src="images/dp.jpeg" alt="" class="circular-border">
</div>
<div class="column right">
<div class="text">I'm Ashutosh and I'm a <span class="typing-2"></span></div>
<p>I'm a B.Tech Computer Science student at IIT Mandi passionate about technology. I've won Bronze in InterIIT Tech Meet 2023 and participated in various programming contests, hackathons, and tech events. As a software developer, I excel in web and app development with expertise in HTML, CSS, JavaScript, React, Node.js, Java, Kotlin, Flutter, and React Native. I'm enthusiastic about exploring the potential of ML and AI and have hands-on experience in data analysis, predictive modeling, deep learning, and game AI. I also have experience in database management, including relational and NoSQL databases like MySQL, PostgreSQL, MongoDB, and Firebase. In addition, I have a keen interest in cybersecurity and have worked on implementing security measures like intrusion detection, prevention systems, and vulnerability assessments. </p>
<!-- <a href="#">Download CV</a> -->
</div>
</div>
</div>
</section>
<!-- services section start -->
<section class="services" id="services">
<div class="max-width">
<h2 class="title">My services</h2>
<div class="serv-content">
<div class="card">
<div class="box">
<i class="fas fa-paint-brush"></i>
<div class="text">Software Development </div>
<p>As a software developer, I excel in both web & app development, with experience in a wide range of technologies. I am proficient in HTML, CSS, JavaScript, React, Node.js and have built web apps with Flutter and integrated APIs. On the app dev side, I worked with Java, Kotlin, Flutter, and React Native, and am experienced in backend development with Node.js and Firebase. With my expertise in both web & app development, I create efficient software solutions to solve real-world problems.</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-chart-line"></i>
<div class="text">ML and AI</div>
<p>I'm passionate about Machine Learning and AI's potential to transform our world. I've implemented various techniques in my projects & developed intelligent agents for games using AI. My hands-on experience in data analysis, predictive modeling, deep learning algorithms, and game AI techniques from competitions and projects has prepared me for exploring the potential of ML and AI in various domains. I believe they are key to future technological advancements and am excited to continue exploring their possibilities.</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-code"></i>
<div class="text">Database Management</div>
<p>I'm interested in database management, with experience in both relational and NoSQL databases such as MySQL, PostgreSQL, MongoDB, and Firebase. I've designed and implemented complex schemas, optimized queries for performance, and ensured data integrity and security. I'm familiar with tools like phpMyAdmin and have also worked with cloud-based databases like AWS RDS. I'm always looking to expand my knowledge and explore new technologies to enhance my skills as a database administrator.</p>
</div>
</div>
<div class="card">
<div class="box">
<i class="fas fa-code"></i>
<div class="text">Cybersecurity</div>
<p>I'm interested in cybersecurity and keeping systems and networks secure from potential threats and attacks. At Arista Networks, I worked on Wireless Intrusion Prevention System (WIPS) and gained experience in implementing security measures such as firewalls, intrusion detection and prevention systems, and vulnerability assessments. I stay up-to-date with the latest trends and technologies in the field to contribute effectively towards keeping systems and networks safe from cyber threats.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- skills section start -->
<section class="skills" id="skills">
<div class="max-width">
<h2 class="title">My skills</h2>
<div class="skills-content">
<div class="column left">
<div class="text">My creative skills & experiences.</div>
<p>As a creative professional with diverse experiences, I possess a wide range of skills in software development, ML and AI, database management, and cybersecurity. I am well-versed in a variety of programming languages and frameworks, including C, C++, Python, HTML, CSS, JavaScript, React, Node.js, Flutter, APIs, Java, Kotlin, and Firebase. I have worked on several ML and AI projects, including supervised and unsupervised learning, kernels, boosting, trees, neural networks, heuristic game-AI algorithms, transformers, stable diffusion, and reinforcement learning.
In the domain of database management, I have extensive knowledge of MySQL, MongoDB, Firestore, and PHPMyAdmin. I have also worked on cybersecurity projects, including Wireless Intrusion Prevention Systems (WIPS), Wi-Fi 6, and Wi-Fi 7.
My experiences in these domains have helped me develop strong problem-solving skills, an analytical mindset, and an eye for detail. I am highly adaptable and thrive in a fast-paced, challenging environment. With my skills and experiences, I am confident in my ability to deliver innovative solutions and make valuable contributions to any project or team.
</p>
<!-- <a href="#">Read more</a> -->
</div>
<div class="column right">
<canvas id="skills-chart" width="450" height="450">
<div class="chart-container">
<div class="pie-chart">
<div class="slice">
<span>HTML</span>
<span>4%</span>
</div>
<span class="legend">Hypertext Markup Language (HTML)</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>CSS</span>
<span>4%</span>
</div>
<span class="legend">Cascading Style Sheets (CSS)</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>JavaScript</span>
<span>4%</span>
</div>
<span class="legend">JavaScript (JS)</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>React</span>
<span>4%</span>
</div>
<span class="legend">ReactJS (React)</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Node.js</span>
<span>4%</span>
</div>
<span class="legend">Node.js (Node)</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Flutter</span>
<span>4%</span>
</div>
<span class="legend">Flutter</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>APIs</span>
<span>4%</span>
</div>
<span class="legend">Application Programming Interfaces (APIs)</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Java</span>
<span>4%</span>
</div>
<span class="legend">Java</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Kotlin</span>
<span>4%</span>
</div>
<span class="legend">Kotlin</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Firebase</span>
<span>4%</span>
</div>
<span class="legend">Firebase</span>
</div>
<!-- MLAI -->
<div class="pie-chart">
<div class="slice">
<span>Supervised & Unsupervised ML</span>
<span>4%</span>
</div>
<span class="legend">Supervised & Unsupervised Machine Learning</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Kernels</span>
<span>4%</span>
</div>
<span class="legend">Kernels</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Boosting</span>
<span>4%</span>
</div>
<span class="legend">Boosting</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Trees</span>
<span>4%</span>
</div>
<span class="legend">Trees</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Neural Networks</span>
<span>4%</span>
</div>
<span class="legend">Neural Networks</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Heuristic Game AIs</span>
<span>4%</span>
</div>
<span class="legend">Heuristic Game AIs</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Transformers</span>
<span>4%</span>
</div>
<span class="legend">Transformers</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Stable Diffusion</span>
<span>4%</span>
</div>
<span class="legend">Stable Diffusion</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Reinforcemnet Learning</span>
<span>4%</span>
</div>
<span class="legend">Reinforcemnet Learning</span>
</div>
<!-- DB -->
<div class="pie-chart">
<div class="slice">
<span>MySQL</span>
<span>4%</span>
</div>
<span class="legend">MySQL</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>MongoDB</span>
<span>4%</span>
</div>
<span class="legend">MongoDB</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Firestore</span>
<span>4%</span>
</div>
<span class="legend">Firestore</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>phpMyAdmin</span>
<span>4%</span>
</div>
<span class="legend">phpMyAdmin</span>
</div>
<!-- languages -->
<div class="pie-chart">
<div class="slice">
<span>C/C++</span>
<span>4%</span>
</div>
<span class="legend">C/C++</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>Python</span>
<span>4%</span>
</div>
<span class="legend">Python</span>
</div>
<!-- wifi -->
<div class="pie-chart">
<div class="slice">
<span>WIPS</span>
<span>4%</span>
</div>
<span class="legend">WIPS</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>WIFI-6</span>
<span>4%</span>
</div>
<span class="legend">WIFI-6</span>
</div>
<div class="pie-chart">
<div class="slice">
<span>WIFI-7</span>
<span>4%</span>
</div>
<span class="legend">WIFI-7</span>
</div>
</div>
</canvas>
</div>
</div>
</div>
</section>
<!-- projects section start -->
<!-- Meet-X, ACPCovers, Age and gender detection on cctv videos, Tower defense AI, Expert Answers in a Flash, Automated proctoring, Students.iit mandi, LIDAR people counter Bot. Chatbot, Web3App, SNTC-calendar, Deepfake, Alien Invasion, minGPT, Reversed Stable diffusion, WIPS -->
<section class="projects" id="projects">
<div class="max-width">
<h2 class="title">My projects</h2>
<div class="carousel owl-carousel">
<div class="card">
<div class="box">
<a href="https://meet-x-df6f4.web.app/#/" target="_blank" rel="noopener noreferrer"> <img src="images/meetx.png" alt=""></a>
<div class="text">Meet-X</div>
<p>Web based centralized inter-organisation scheduling application specifically designed for incubators to easily schedule meetings between startups and mentors.
(MVP Stage development)
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/Age-and-gender-detection" target="_blank" rel="noopener noreferrer"> <img src="images/agegender.png" alt=""></a>
<div class="text">Age and Gender detection on CCTV videos</div>
<p>Object Detection: imageai for object detection, SRGAN algorithms for image enhancement, MTCNN for face detection.
Classification and estimation: Deepface(Age) and Resnet9 model(Gender).
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://drive.google.com/file/d/1wQ5ckDwbWo6qG9minCd-qdU8ZWK_C1fF/view?usp=sharing" target="_blank" rel="noopener noreferrer"> <img src="images/deformer.png" alt=""></a>
<div class="text">Expert Answers in a Flash</div>
<p>An efficient and easy to deploy QA system that can handle answerable queries quickly and connect users with a human worker if necessary.
A combination of efficient modules was chosen for paragraph retrieval and answering questions.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/Tower_defense_ai" target="_blank" rel="noopener noreferrer"> <img src="images/gameai.png" alt=""></a>
<div class="text">Tower Defence AI</div>
<p>A fresh take on the classic tower defense game and AI to play it. Made in Python. The game contains 2 modes:
Manual
AI mode (genetic Algorithm mode)
Player can choose to use the game in any of given modes.
Implemented Genetic Algorithm from scratch whose performance matches human level performance.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/automatedProctoring" target="_blank" rel="noopener noreferrer"> <img src="images/proctor.png" alt=""></a>
<div class="text">Automated Proctoring</div>
<p>Automated proctoring system for online exams and can be further extended to offline exams.
The system is based on face recognition and gaze detection.
The system is made in python and uses opencv, vgg2, etc.
The system is made to work on low end devices and can be easily deployed.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/studentsweb" target="_blank" rel="noopener noreferrer"> <img src="images/students.png" alt=""></a>
<div class="text">Students@IITMandi</div>
<p>The older version of students website of IIT Mandi was not designed from user friendly approach, it was not updated rergulary as well.
This project tackled this problem.
We completely made the whole website from scratch.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/ACPcovers" target="_blank" rel="noopener noreferrer"> <img src="images/acpcovers.jpeg" alt=""></a>
<div class="text">ACPCovers</div>
<p>Automated cricket pitch covers for rain protection.
A 4 wheeled automated bot to cover cricket pitch when it rains during ongoing match, to avoid excessive manpower and cost required.
Bot is controlled by a android application.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/Lidar-based-people-counter" target="_blank" rel="noopener noreferrer"> <img src="images/lidar.png" alt=""></a>
<div class="text">LIDAR occupancy counter with room automation</div>
<p>The bot will sense and count the number of people entering and leaving the room and in addition to that,
will perform room automation (light, fan, door lock[electric]) .
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/Chatbot" target="_blank" rel="noopener noreferrer"> <img src="images/chatbot.png" alt=""></a>
<div class="text">Humanoid Chatbot</div>
<p>A telegram bot for getting answers to a lot of frequently asked questions for freshers coming to IIT Mandi.
Technologies used : Flask
ngrok
python-telegram-bot
Dialogflow
APIs: Firebase, Google Maps, Nominatim, Stack Exchange
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/BuildW3" target="_blank" rel="noopener noreferrer"> <img src="images/nft.png" alt=""></a>
<div class="text">Web3App</div>
<p>This project demonstrates a basic Hardhat use case.
It comes with a contract, a test for that contract, a script that deploys that contract, and a task implementation, which simply lists the available accounts.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/SNTC-Calendar" target="_blank" rel="noopener noreferrer"> <img src="images/sntc.png" alt=""></a>
<div class="text">SNTC-Calendar</div>
<p>Event Calendar for IIT Mandi's Gymkhana
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/deepfake-model1" target="_blank" rel="noopener noreferrer"> <img src="images/fakeface.png" alt=""></a>
<div class="text">Deepfake</div>
<p>Nowadays, with the advent of Generative Adversarial Networks (GANs), there are lots of fake images and videos of people on the internet.
The goal of this model was to classify whether a given image has a real face or a fake face.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/Alien-Invasion" target="_blank" rel="noopener noreferrer"> <img src="images/alien.png" alt=""></a>
<div class="text">Alien Invasion</div>
<p>A classic game about eliminating the invasion of aliens using Pygame based on the guide of 'Python Crash Course'
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://www.kaggle.com/code/ashtcoder/mingpt-shakespeare-andrej-karpathy" target="_blank" rel="noopener noreferrer"> <img src="images/mingpt.png" alt=""></a>
<div class="text">minGPT</div>
<p>Implemented a Generative Pretrained Transformer (GPT) model based on the research paper "Attention is All You Need" and OpenAI's GPT2/GPT3 models.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://www.kaggle.com/code/ashtcoder/stable-diffusion-starters-reversed/" target="_blank" rel="noopener noreferrer"> <img src="images/diffusion.png" alt=""></a>
<div class="text">Reversed Stable diffusion</div>
<p>Reverse the typical direction of a generative text-to-image model:
instead of generating an image from a text prompt, creating a model which can predict the text prompt given a generated image.
I made predictions on a dataset containing a wide variety of (prompt, image) pairs generated by Stable Diffusion 2.0, in order to understand how reversible the latent relationship is.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="" rel="noopener noreferrer"> <img src="images/wips.png" alt=""></a>
<div class="text">WIPS</div>
<p>Researched and implemented new algorithms and ways to perform WIPS in Wi-Fi-6 and Wi-Fi-7 at Arista Networks.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/Konnect-Devfolio" target="_blank" rel="noopener noreferrer"> <img src="images/kon.jpeg" alt=""></a>
<div class="text">Konnect</div>
<p>Konnect is a mobile application based on idea to connect consumer, workers, shopkeepers in
current Covid situation.
</p>
</div>
</div>
<div class="card">
<div class="box">
<a href="https://github.com/code-ash-IIT/Hack30" target="_blank" >
<img src="images/Screenshot (166).png" alt=""></a>
<div class="text">Covid-Update Website</div>
<p>This website gives stats, updates and other info about covid spread worldwide.</p>
</div>
</div>
</div>
</div>
</section>
<!-- contact section start -->
<section class="contact" id="contact">
<div class="max-width">
<h2 class="title">Contact me</h2>
<div class="contact-content">
<div class="column left">
<div class="text">Get in Touch</div>
<p>Please don't hesitate to contact. Expanding network always helps us find our way to the goal.</p>
<div class="icons">
<div class="row">
<i class="fas fa-user"></i>
<div class="info">
<div class="head">Name</div>
<div class="sub-title">Ashutosh Sharma</div>
</div>
</div>
<div class="row">
<i class="fas fa-map-marker-alt"></i>
<div class="info">
<div class="head">Address</div>
<div class="sub-title">IIT Mandi, Himachal Pradesh, India</div>
</div>
</div>
<div class="row">
<i class="fas fa-envelope"></i>
<div class="info">
<div class="head">Email</div>
<div class="sub-title">ashutoshsh2002@gmail.com</div>
</div>
</div>
</div>
</div>
<div class="column right">
<div class="text">Message me</div>
<form action="https://formspree.io/f/moqzrjwd" method="post">
<div class="fields">
<div class="field name">
<input type="text" placeholder="Name" required>
</div>
<div class="field email">
<input type="email" name="email" placeholder="Your Email" required>
</div>
</div>
<div class="field">
<input type="text" placeholder="Subject" required>
</div>
<div class="field textarea">
<textarea cols="30" rows="10" name="message" placeholder="Message..." required></textarea>
</div>
<div class="button-area">
<button type="submit">Send message</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- footer section start -->
<footer>
<span>Created By <a href="https://github.com/code-ash-IIT">Ashutosh Sharma</a> </span>
</footer>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="script.js"></script>
</body>
</html>