-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript-projects.html
More file actions
443 lines (438 loc) · 16.2 KB
/
javascript-projects.html
File metadata and controls
443 lines (438 loc) · 16.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Javascript projects</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/d74f12bccc.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="loader-wrapper">
<div id="loader"></div>
</div>
<div id="content">
<nav
class="navbar navbar-expand-lg bg-body-tertiary"
style="position: sticky; top: 0; z-index: 100"
>
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">Vishal's Profile</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="./index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Projects
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="./html-css-projects.html"
>Html/Css projects</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://github.com/vishal02527/CPP-Projects"
target="_blank"
>C++ projects</a
>
</li>
<li>
<a class="dropdown-item" href="./javascript-projects.html"
>Javascript projects</a
>
</li>
<li>
<a class="dropdown-item" href="./reactjs-projects.html"
>ReactJs projects</a
>
</li>
<li>
<a class="dropdown-item" href="./nodejs-projects.html"
>NodeJs projects</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://github.com/vishal02527/Java-Projects"
target="_blank"
>Java projects</a
>
</li>
<li>
<a class="dropdown-item" href="./creative-projects.html"
>Creative projects</a
>
</li>
</ul>
</li>
<li class="rightNav">
<form class="formNav" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search all content"
aria-label="Search"
/>
<button class="btn btn-warning" type="submit">Search</button>
<a href="./signup.html"
><button
type="button"
class="btn btn-success"
style="margin-left: 10px"
>
Signup
</button></a
>
<a href="./login.html"
><button
type="button"
class="btn btn-primary"
style="margin-left: 10px"
>
Login
</button></a
>
</form>
</li>
</ul>
</div>
</div>
</nav>
<main style="margin: 50px auto">
<h1 class="proHead">Javascript projects</h1>
<div class="cardContainer">
<div class="rowCard">
<div class="projectCards">
<img
src=".//images/pro-js1.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Hospital patient records</h2>
<span class="name">Vishal Kumar</span>
<span>| 03 Aug 2023</span>
<p class="cardpara">
This project is useful for storing the data of patients in a
hospital. In this project, three input fields are used, that
are, patient name, age and disease.
</p>
<a
href="https://codepen.io/Vishal-Kumar25/pen/yLQZWEv"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js2.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Marksheet generator</h2>
<span class="name">Vishal Kumar</span>
<span>| 02 Aug 2023</span>
<p class="cardpara">
It generates a marksheet by taking input as marks for different
subjects and after calculating the percentage and grade, it
gives marksheet.
</p>
<a
href="https://codepen.io/Vishal-Kumar25/pen/ZEmwyyd"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js3.png"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">IPL Team Project</h2>
<span class="name">Vishal Kumar</span>
<span>| 25 Sep 2023</span>
<p class="cardpara">
In this project, details of IPL team are stored, we can add any
specific team and team player and also view details of specific
team and team player.
</p>
<a
href="https://ipl-team-by-vishal-kumar.netlify.app/"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
</div>
<div class="rowCard">
<div class="projectCards">
<img
src=".//images/pro-js4.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Student/Teacher records</h2>
<span class="name">Vishal Kumar</span>
<span>| 26 July 2023</span>
<p class="cardpara">
This stores the data of students and teachers manually. We have
one home page where we can choose whose data we have to store
teachers or students.
</p>
<a
href="https://student-teacher-record-by-vishalkumar.netlify.app/"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js5.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Set your journey</h2>
<span class="name">Vishal Kumar</span>
<span>| 04 Aug 2023</span>
<p class="cardpara">
Using the set your journey app you can plan your journey. Three
input fields are there one is for destination, second is for
date and the third is for time.
</p>
<a
href="https://codepen.io/Vishal-Kumar25/pen/poQYNge"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js6.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">The quiz app</h2>
<span class="name">Vishal Kumar</span>
<span>| 06 Aug 2023</span>
<p class="cardpara">
This project is based on quiz containing ten questions and four
options for each question. After submitting the quiz, score will
be shown in the score board.
</p>
<a
href="https://quiz-app-by-vishal-kumar.netlify.app/"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
</div>
<div class="rowCard">
<div class="projectCards">
<img
src=".//images/pro-js7.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Responsive Quiz app</h2>
<span class="name">Vishal Kumar</span>
<span>| 07 Nov 2023</span>
<p class="cardpara">
This is an interesting responsive quiz web app with stylish
design. A timer is also added in the quiz. You have to enter
your name before playing quiz.
</p>
<a href="https://playquizwithvishal.netlify.app/" target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js8.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">My Strength Shree Krishna</h2>
<span class="name">Vishal Kumar</span>
<span>| 15 Nov 2023</span>
<p class="cardpara">
This website is based on devotional content. Many resources and
references are here to motivate you towards Krishna's devotion.
</p>
<a
href="https://mystrengthshreekrishna.vercel.app/"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js9.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">ShopLane Website</h2>
<span class="name">Vishal Kumar</span>
<span>| 12 Aug 2023</span>
<p class="cardpara">
This is a shopping website, user can add his/her favourite item
into cart and by clicking on the cart he/she can place the
order.
</p>
<a
href="https://shoplane-website-by-vishal-kumar.netlify.app/;"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
</div>
<div class="rowCard">
<div class="projectCards">
<img
src=".//images/pro-js10.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Expense Tracker App</h2>
<span class="name">Vishal Kumar</span>
<span>| 16 Feb 2024</span>
<p class="cardpara">
Built an expense tracking website using html, css and
javascript. With the help of this app, we can easily maintain
our expenses according to our income.
</p>
<a
href="https://expense-tracker-app-by-vishal-kumar.netlify.app/"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js11.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Social Media Dashboard</h2>
<span class="name">Vishal Kumar</span>
<span>| 16 Feb 2024</span>
<p class="cardpara">
In this website, after signing up, users can access the
dashboard, and can create, edit or delete the post. And can see
dashboard in white or dark mode.
</p>
<a
href="https://social-media-dashboard-by-vishal-kumar.vercel.app/"
target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
<div class="projectCards">
<img
src=".//images/pro-js12.jpeg"
width="250"
height="200"
class="cardimage"
/>
<h2 class="cardtitle">Portfolio</h2>
<span class="name">Vishal Kumar</span>
<span>| 16 Feb 2024</span>
<p class="cardpara">
A simple and amazing portfolio containing a jumbotron, about,
education, experience, projects, skills and contact sections.
</p>
<a href="https://great-portfolio.netlify.app/" target="_blank"
><button class="pro-btn"><span>View Project</span></button></a
>
</div>
</div>
</div>
<button id="topBtn" title="Go to top"><i class="fa-solid fa-arrow-up"></i></button>
</main>
<footer>
<div class="leftSide">
<a href="/">
<img class="footImg" src=".//images/my-avatar.png" />
</a>
<span class="creator">All rights reserved ©2024, Vishal Kumar</span>
</div>
<ul>
<li>
<a href="https://github.com/vishal02527" target="_blank"
><i class="fa-brands fa-github fa-2xl"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/vishal-kumar-8303a3283/"
target="_blank"
><i class="fa-brands fa-linkedin fa-2xl"></i
></a>
</li>
<li>
<a href="https://codepen.io/Vishal-Kumar25" target="_blank"
><i class="fa-brands fa-codepen fa-2xl"></i
></a>
</li>
</ul>
</footer>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>