-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
363 lines (362 loc) · 11.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javascript Projects</title>
<link rel="stylesheet" href="./style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<h1>Awesome Javascript Projects</h1>
<p>
Here are the amazing javascript projects, that can be helpful for any
developer whether they are beginner or advanced.
</p>
<div class="projectsContainer">
<div class="project">
<div class="content">
<h2>1. Weather App</h2>
<p>
A beautiful weather app using HTML, CSS, and JavaScript. It uses
the OpenWeatherMap API to fetch weather data.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/live_weather_app/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/live_weather_app"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>2. To Do List App</h2>
<p>
An awesome to do list app using HTML, CSS, and JavaScript. It uses
local storage to store tasks and keep them stored untill you
remove them.
</p>
</div>
<div class="btn">
<a href="https://adityadhiman-in.github.io/toDoApp/" target="_blank"
>Preview</a
>
<a href="https://github.com/adityadhiman-in/toDoApp" target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>3. Quiz App</h2>
<p>
A quiz app using HTML, CSS, and JavaScript. It shows questions and
options and the result after completing.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/Quiz_App/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/Quiz_App"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>4. Secure Password Generator</h2>
<p>
A secure password generator using HTML, CSS, and JavaScript. It
generates a secure password of length 16 words.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/password_generator/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/password_generator"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>5. Notes App</h2>
<p>
A simple and user-friendly Notes App built using HTML, CSS, and
JavaScript. This app allows users to create, edit, and delete
notes effortlessly.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/notes_app_javascript/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/notes_app_javascript"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>6. Qr Code Generator</h2>
<p>
Welcome to the QR Code Generator project! This simple web
application allows users to generate QR codes from text input
using the QRServer API.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/qr_code_generator/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/qr_code_generator"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>7. Age Calculator</h2>
<p>
This is a Beautiful web-based Age Calculator that determines your
age in years, months, and days based on your birth date.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/age_calculator/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/age_calculator"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>8. Calculator</h2>
<p>
A simple and elegant calculator built with HTML, CSS, and
JavaScript. This calculator can perform basic arithmetic
operations and includes features for clearing input and deleting
the last character.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/calculator/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/calculator"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>9. Quotes Generator</h2>
<p>
This is a beautiful web-based Quote Generator that fetches and
displays random quotes from an API. Users can also share the
quotes via WhatsApp.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/quotes_generator/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/quotes_generator"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>10. StopWatch</h2>
<p>
This project is a beautiful stopwatch built using HTML, CSS, and
JavaScript. It allows users to start, stop, and reset a timer with
a user friendly interface.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/stopwatch/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/stopwatch"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>11. Music Player</h2>
<p>
A contemporary and feature-rich music player crafted using HTML,
CSS, and JavaScript. This project showcases functionalities such
as play, pause, next, and previous controls, alongside a progress
bar for seamless song management.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/music_player/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/music_player"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>12. Digital Watch</h2>
<p>
A simple digital watch built using HTML, CSS, and JavaScript. This
project displays the current time with hours, minutes, and seconds
updated every second.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/digital_watch/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/digital_watch"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>13. Number Guessing Game</h2>
<p>
This is a simple Number Guessing Game built with HTML, CSS, and
JavaScript. The game generates a random number between 1 and 100,
and the player has to guess the correct number from four given
options. The game shows feedback if the guess is correct or
incorrect and provides an option to play again after a correct
guess.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/number_guessing_game/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/number_guessing_game"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>14. Word Counter</h2>
<p>
A real-time Word and Character Counter web app that updates counts
as you type. Built with HTML, CSS, and JavaScript for an
interactive and responsive design.
</p>
</div>
<div class="btn">
<a
href="https://adityadhiman-in.github.io/word_counter/"
target="_blank"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/word_counter"
target="_blank"
>Github</a
>
</div>
</div>
<div class="project">
<div class="content">
<h2>15. Color Pallete</h2>
<p>
A simple and fun project to generate random color palettes using
**HTML**, **CSS**, and **JavaScript**. This beginner-friendly
project helps you practice **DOM manipulation**, **JavaScript
event handling**, and basic **UI design**.
</p>
</div>
<div class="btn">
<a href="https://adityadhiman-in.github.io/color-pallete-generator"
>Preview</a
>
<a
href="https://github.com/adityadhiman-in/color-pallete-generator"
target="_blank"
>Github</a
>
</div>
</div>
</div>
</div>
<footer>
<p>Made With ❤️ By Aditya Dhiman</p>
<p>
<a href="https://adityadhiman.in"><i class="ri-global-line"></i></a>
<a href="https://github.com/adityadhiman-in"
><i class="ri-github-fill"></i
></a>
<a href="https://www.linkedin.com/in/adityadhiman-in"
><i class="ri-linkedin-box-fill"></i
></a>
</p>
</footer>
</body>
</html>