-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathproject.html
More file actions
472 lines (450 loc) Β· 24.4 KB
/
Copy pathproject.html
File metadata and controls
472 lines (450 loc) Β· 24.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projects β Sampada Tiwari</title>
<script src="https://cdn.tailwindcss.com"></script>
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<link rel="stylesheet" href="css/project.css" />
</head>
<body>
<!-- Navbar -->
<header class="fixed top-0 left-0 w-full bg-[#0f172a]/80 backdrop-blur-md z-50">
<div class="max-w-7xl mx-auto flex items-center justify-between px-6 py-4">
<!-- Brand / Logo -->
<h1 class="text-2xl font-bold text-white">
Sampada <span class="text-cyan-400">Tiwari</span>
</h1>
<!-- Desktop Navigation -->
<nav class="hidden md:flex items-center space-x-6 font-medium">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="skills.html" class="nav-link">Skills</a>
<a href="experience.html" class="nav-link">Experience</a>
<a href="project.html" class="nav-link">Projects</a>
<a href="index.html#testimonials" class="nav-link">Testimonials</a>
<a href="contact.html" class="nav-link">Contact</a>
<!-- Theme Toggle -->
<button id="theme-toggle" class="ml-4 text-white hover:text-cyan-400 transition">
<i id="theme-toggle-icon" class="fas fa-moon text-xl"></i>
</button>
</nav>
<!-- Mobile Menu Button -->
<button id="menu-btn" class="md:hidden text-white focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-[#0f172a]/95 backdrop-blur-md">
<nav class="flex flex-col px-6 py-4 space-y-4 font-medium">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="skills.html" class="nav-link">Skills</a>
<a href="experience.html" class="nav-link">Experience</a>
<a href="project.html" class="nav-link">Projects</a>
<a href="index.html#testimonials" class="nav-link">Testimonials</a>
<a href="contact.html" class="nav-link">Contact</a>
</nav>
</div>
</header>
<section class="py-20 text-center" style="margin-top: 4rem">
<h1 class="text-5xl md:text-6xl font-extrabold gradient-text mb-4">
Projects
</h1>
<p class="text-gray-400 max-w-xl mx-auto text-lg">
Modern interactive showcase with hover animations, gradients, and
detailed content below each project.
</p>
</section>
<!-- Projects Grid -->
<div class="projects-grid grid gap-8 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3 px-6">
<!-- Real Estate Platform -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=800&q=80"
alt="Real Estate Platform"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
Real Estate Platform
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Virtual real estate marketplace in metaverse environments with 3D
visualization and virtual tours.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Unity, Three.js, Web3.js</p>
<p><strong>Key Features:</strong> 3D visualization, Virtual tours, Integrated payments</p>
<p><strong>Role:</strong> Full Stack Developer</p>
<p><strong>Outcome:</strong> Immersive virtual real estate platform</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="#" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- ΰ€ΰ€²ΰ€Ύ.ficial -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://images.unsplash.com/photo-1579546929662-711aa81148cf?auto=format&fit=crop&w=800&q=80"
alt="ΰ€ΰ€²ΰ€Ύ.ficial"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
ΰ€ΰ€²ΰ€Ύ.ficial
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Virtual art exhibition platform with modern UI, fluid animations,
and real-time global notifications.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> HTML, CSS, JavaScript, Leaflet.js</p>
<p><strong>Key Features:</strong> Virtual exhibition, Real-time notifications</p>
<p><strong>Role:</strong> Frontend Developer</p>
<p><strong>Outcome:</strong> Engaging virtual art platform</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://example.com/kala-ficial" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- NASA Space Challenge -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://images.unsplash.com/photo-1446776653964-20c1d3a81b06?auto=format&fit=crop&w=800&q=80"
alt="NASA Space Challenge"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
NASA Space Challenge (Hack Celestia)
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Collaborative task manager for exploring planetary data and solar
system exploration during NASA Space Apps Challenge.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> React, Node.js, APIs</p>
<p><strong>Key Features:</strong> Collaborative data management, Planetary exploration</p>
<p><strong>Role:</strong> Full Stack Developer</p>
<p><strong>Outcome:</strong> Efficient task management for NASA challenge</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://example.com/nasa-hack" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- DeshDarshan -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=800&q=80"
alt="DeshDarshan"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
DeshDarshan (Ongoing)
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Platform showcasing India's heritage, festivals, food, art, and
famous places for immersive exploration across all states.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> React, Tailwind CSS, APIs</p>
<p><strong>Key Features:</strong> Cultural exploration, State-wise content</p>
<p><strong>Role:</strong> Frontend Developer</p>
<p><strong>Outcome:</strong> Interactive cultural discovery platform</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://example.com/deshdarshan" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- Spam Mail Classification -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://griddb-pro-ewemahawekgyd8bs.a03.azurefd.net/en/wp-content/uploads/2021/11/email-spam-1160x650.png"
alt="spam-mail-classification"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
spam-mail-classification
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Automated email classifier using NLP techniques for real-time spam detection...
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Python, NLP, scikit-learn</p>
<p><strong>Key Features:</strong> Real-time spam detection, learning model</p>
<p><strong>Role:</strong> Developer & Designer</p>
<p><strong>Outcome:</strong> Scalable email classification system</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="#" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- DeFi Trading Platform -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://www.solulab.com/wp-content/uploads/2023/08/Best-Defi-Trading-Platforms.jpg"
alt="DeFi Trading Platform"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
DeFi Trading Platform
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Decentralized finance platform for trading, staking, and liquidity across multiple blockchains...
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Solidity, React, Web3.js</p>
<p><strong>Key Features:</strong> Multi-chain trading, staking, analytics</p>
<p><strong>Role:</strong> Full Stack Developer</p>
<p><strong>Outcome:</strong> DeFi platform with automated strategies</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="#" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- Contract Auditing Tool -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://101blockchains.com/wp-content/uploads/2023/12/top-smart-contracts-auditing-tools.png"
alt="Contract Auditing Tool"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
Contract Auditing Tool
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Automated smart contract auditing platform identifying vulnerabilities and optimizing gas usage.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> Solidity, Hardhat, Ethers.js</p>
<p><strong>Key Features:</strong> Security auditing, Gas optimization, Compliance check</p>
<p><strong>Role:</strong> Smart Contract Developer</p>
<p><strong>Outcome:</strong> Safer and optimized contracts</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="#" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
<!-- HearMe Platform -->
<div class="project-card relative group rounded-2xl overflow-hidden shadow-lg cursor-pointer transition-transform duration-500 hover:scale-105 hover:shadow-2xl">
<div class="relative h-48 overflow-hidden rounded-t-2xl">
<img
src="https://i.ytimg.com/vi/crAHR64_C48/maxresdefault.jpg"
alt="HearMe Platform"
class="w-full h-full object-cover transition-transform duration-500 group-hover:scale-110"
/>
<div class="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent transition-opacity duration-500 group-hover:opacity-70"></div>
</div>
<div class="p-5 bg-[#0f172a]">
<h3 class="text-2xl font-bold gradient-text mb-2 transition-colors duration-500 group-hover:text-pink-400">
HearMe Platform
</h3>
<p class="text-gray-400 mb-3 line-clamp-3">
Responsive e-commerce platform for the deaf and mute community, designed with accessibility and intuitive navigation.
</p>
<div class="text-gray-300 text-sm space-y-1">
<p><strong>Technologies:</strong> React, Tailwind CSS, Accessibility API</p>
<p><strong>Key Features:</strong> Accessibility-focused, Intuitive navigation</p>
<p><strong>Role:</strong> Frontend Developer</p>
<p><strong>Outcome:</strong> Inclusive e-commerce platform</p>
</div>
<div class="mt-4 flex gap-4">
<a href="#" target="_blank" class="text-blue-400 hover:text-blue-600 flex items-center gap-1 transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://example.com/hearme" target="_blank" class="text-green-400 hover:text-green-600 flex items-center gap-1 transition-colors">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
<div class="comment-section">
<div class="comment-list"></div>
<div class="comment-input">
<input type="text" placeholder="Add a comment..." />
<button>Add</button>
</div>
</div>
</div>
</div>
</div>
<!-- Scroll to Top/Bottom Button -->
<button id="smartScrollBtn" aria-label="Scroll">
<svg id="scrollIcon" class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" clip-rule="evenodd"/>
</svg>
</button>
<!-- Footer -->
<footer class="bg-gradient-to-br from-gray-900 to-gray-800 text-gray-200 py-16 px-6 md:px-12" style="margin-top: 4rem">
<div class="flex flex-col md:flex-row md:justify-between gap-12 md:gap-8 mb-8">
<div class="text-center md:text-left">
<h2 class="text-2xl md:text-3xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-purple-500">
Sampada<span class="font-extrabold">Tiwari</span>
</h2>
<p class="text-gray-400 mt-1 text-sm md:text-base">
Data Scientist β’ Leader β’ Creator
</p>
</div>
<div class="text-center md:text-left">
<h3 class="text-cyan-400 text-lg font-semibold mb-3">Quick Links</h3>
<ul class="flex flex-wrap justify-center md:justify-start gap-3 md:gap-2">
<li><a href="index.html" class="hover:text-cyan-400 transition-colors">Home</a></li>
<li><a href="about.html" class="hover:text-cyan-400 transition-colors">About</a></li>
<li><a href="skills.html" class="hover:text-cyan-400 transition-colors">Skills</a></li>
<li><a href="experience.html" class="hover:text-cyan-400 transition-colors">Experience</a></li>
<li><a href="project.html" class="hover:text-cyan-400 transition-colors">Projects</a></li>
<li><a href="index.html#testimonials" class="hover:text-cyan-400 transition-colors">Testimonials</a></li>
<li><a href="contact.html" class="hover:text-cyan-400 transition-colors">Contact</a></li>
</ul>
</div>
<div class="text-center md:text-left">
<h3 class="text-cyan-400 text-lg font-semibold mb-3">Follow Me</h3>
<div class="flex justify-center md:justify-start gap-4 text-2xl">
<a href="https://linkedin.com/in/sampada" target="_blank" class="hover:text-cyan-400 transform hover:scale-125 transition-all">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/sampada" target="_blank" class="hover:text-cyan-400 transform hover:scale-125 transition-all">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/sampada" target="_blank" class="hover:text-cyan-400 transform hover:scale-125 transition-all">
<i class="fab fa-twitter"></i>
</a>
<a href="mailto:[email protected]" class="hover:text-cyan-400 transform hover:scale-125 transition-all">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 pt-4 text-center text-sm text-gray-500">
Β© 2025 Sampada Tiwari β’ All Rights Reserved
</div>
</footer>
<!-- External JavaScript File -->
<script src="js/project.js"></script>
</body>
</html>