forked from PCCoE-Hacktoberfest-21/animated-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
427 lines (376 loc) · 12.6 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
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Animate 🚀</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="main.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
</head>
<body>
<!-- social media icons -->
<div class="social_media_div">
<ul class="icons_list">
<li>
<a href="https://www.linkedin.com/company/pccoe-acm-student-chapter" target="_blank"><i class="fab fa-linkedin-in fs-4" id="linkedin"></i></a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCY5ikWq8yG6bSS1W322M9iw" target="_blank"><i class="fab fa-youtube fs-5" id="youtube"></i></a>
</li>
<li>
<a href="https://twitter.com/pccoeacm?s=09" target="_blank"><i class="fab fa-twitter fs-5" id="twitter"></i></a>
</li>
<li>
<a href="https://www.instagram.com/pccoeacm/" target="_blank"><i class="fab fa-instagram fs-4" id="instagram"></i></a>
</li>
<li>
<a href="mailto:[email protected]" target="_blank"><i class="far fa-envelope fs-5" id="gmail"></i></a>
</li>
</ul>
</div>
<div class="container">
<!-- Add your cards below -->
<!-- Tag Cloud -->
<div class="card">
<div class="box">
<div class="content">
<h2>01</h2>
<h3>Tag Cloud</h3>
<p>
This is an animated visual representation of different words
bundled up together.
</p>
<a href="/animated-components/AnimatedTagCloud/animated_tag_cloud.html" target="_blank">Live Demo</a>
</div>
</div>
<div class="glow"></div>
</div>
<!-- Side Bar -->
<div class="card">
<div class="box">
<div class="content">
<h2>02</h2>
<h3>Hamburger Menu</h3>
<p>
This is an animated menu which opens up as a sidebar or navigation
drawer when clicked.
</p>
<a href="/animated-components/Responsive_Sidebar/sidebar.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Testinomials -->
<div class="card">
<div class="box">
<div class="content">
<h2>03</h2>
<h3>Testimonials</h3>
<p>
Tired of using plain cards for testimonials? Check out this cool
animated component for testimonials.
</p>
<a href="/animated-components/Testimonials/test.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Page Loader -->
<div class="card">
<div class="box">
<div class="content">
<h2>04</h2>
<h3>Loader</h3>
<p>A cool animated loader for your website while it loads.</p>
<a href="/animated-components/LoadingAnimation/LoadingAnimation.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Drag and Drop task list -->
<div class="card">
<div class="box">
<div class="content">
<h2>05</h2>
<h3>Drag and Drop</h3>
<p>
A kanban board styled drag and drop list for your team to stay
organised.
</p>
<a href="/animated-components/Drag&Drop_Task_List/drag&drop.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Product Cards -->
<div class="card">
<div class="box">
<div class="content">
<h2>06</h2>
<h3>Product Cards</h3>
<p>
Checkout these amazing cards to display your product details when
the user hovers on them.
</p>
<a href="/animated-components/Product_Cards/Product.html" target="_blank">Live Demo</a>
</div>
</div>
<div class="glow"></div>
</div>
<!-- Animated Card Grid -->
<div class="card">
<div class="box">
<div class="content">
<h2>07</h2>
<h3>Animated Card Grid</h3>
<p>
A creative card grid which lets you choose amongst several colors!
</p>
<a href="/animated-components/AnimatedCardGrid/animated_card_grid.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- 3D social media bar -->
<div class="card">
<div class="box">
<div class="content">
<h2>08</h2>
<h3>3D social media Bard</h3>
<p>
A sticky social media bar with 3D animations.
</p>
<a href="/animated-components/3D social media bar/3D_socialMediaBar.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- List View -->
<div class="card">
<div class="box">
<div class="content">
<h2>09</h2>
<h3>List View</h3>
<p>
Innovate boring lists with this animated list view component with
hover effects.
</p>
<a href="/animated-components/ListView/ListView.html" target="_blank">Live Demo</a>
</div>
</div>
<div class="glow"></div>
</div>
<!-- Registration Page -->
<div class="card">
<div class="box">
<div class="content">
<h2>10</h2>
<h3>Registration Page</h3>
<p>
A ready-to-go registration page template to use in your projects.
</p>
<a href="/animated-components/Registration/Registration.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Skills bar -->
<div class="card">
<div class="box">
<div class="content">
<h2>11</h2>
<h3>Skills Bar</h3>
<p>
Flaunt your skills on your portfolio with this cool skills bar
component.
</p>
<a href="/animated-components/Skills Bar/skillsbar.html" target="_blank">Live Demo</a>
</div>
</div>
<div class="glow"></div>
</div>
<!-- Footer -->
<div class="card">
<div class="box">
<div class="content">
<h2>12</h2>
<h3>Footer</h3>
<p>A completely responsive footer to use in your website.</p>
<a href="/animated-components/Footer/Footer.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Gallery -->
<div class="card">
<div class="box">
<div class="content">
<h2>13</h2>
<h3>Gallery</h3>
<p>Check out this video gallery.</p>
<a href="/animated-components/Gallery/VideoGallery.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Vertical Slide Bar -->
<div class="card">
<div class="box">
<div class="content">
<h2>14</h2>
<h3>Vertical Card Slider</h3>
<p>Vertical card slider showing profile picture, name and a follow button</p>
<a href="/animated-components/Vertical Card Slider/verticalcardslider.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Wave Animation -->
<div class="card">
<div class="box">
<div class="content">
<h2>15</h2>
<h3>Wave Animation</h3>
<p>Checkout this Wave Animation</p>
<a href="/animated-components/WaveAnimation/WaveAnimation.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Fill On Scroll Animation -->
<div class="card">
<div class="box">
<div class="content">
<h2>16</h2>
<h3>Fill on Scroll Animation</h3>
<p>Check this Animation out!</p>
<a href="/animated-components/fillonscroll/fillonscroll.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Glitch on Hover Animation -->
<div class="card">
<div class="box">
<div class="content">
<h2>17</h2>
<h3>Glitch on Hover Animation</h3>
<p>Check this Animation out!</p>
<a href="/animated-components/Glitch/Glitch.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Custom Modal -->
<div class="card">
<div class="box">
<div class="content">
<h2>17</h2>
<h3>Custom Modal</h3>
<p>
Check out this Custom Modal
</p>
<a href="/animated-components/CustomModal/CustomModal.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Hovering Avatar Animation -->
<div class="card">
<div class="box">
<div class="content">
<h2>18</h2>
<h3>Hovering Avatar</h3>
<p>Check this Animation out!</p>
<a href="/animated-components/Floating_Avatar/Floating_Avatar.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Message Icon Animation -->
<div class="card">
<div class="box">
<div class="content">
<h2>19</h2>
<h3>Message Animation</h3>
<p>Check this Animation out!</p>
<a href="/animated-components/message/message.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Spinner Loaders Animation -->
<div class="card">
<div class="box">
<div class="content">
<h2>20</h2>
<h3>Spinner Loaders Animation</h3>
<p>Check this Animation out!</p>
<a href="/animated-components/SpinnerLoaders/spinnerloaders.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Parallax Animation -->
<div class="card">
<div class="box">
<div class="content">
<h2>21</h2>
<h3>Parallax Animation</h3>
<p>Check this Animation out!</p>
<a href="/animated-components/Parallax Animation/parallax.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Font Pack -->
<div class="card">
<div class="box">
<div class="content">
<h2>22</h2>
<h3>Font Pack</h3>
<p>Check this Animation out!</p>
<a href="/animated-components/FontPack/" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Search Box -->
<div class="card">
<div class="box">
<div class="content">
<h2>25</h2>
<h3>Search Box</h3>
<p>
Animated Search Box
</p>
<a href="/animated-components/SearchBox/search.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Navbar -->
<div class="card">
<div class="box">
<div class="content">
<h2>23</h2>
<h3>Navbar</h3>
<p>A responsive animated navbar</p>
<a href="/animated-components/Navbar/navbar.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Animated and responsive Footer -->
<div class="card">
<div class="box">
<div class="content">
<h2>24</h2>
<h3>Responsive Footer</h3>
<p>A completely responsive and animated footer to use in your website.</p>
<a href="/animated-components/Animated_and_responsive_footer/index.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!--Star Ratings Using Emoji-->
<div class="card">
<div class="box">
<div class="content">
<h2>24</h2>
<h3>Star Ratings Using Emoji</h3>
<p>A responsive animated navbar</p>
<a href="/animated-components/Star-Ratings-Using-Emoji/Star-Ratings-Using-Emoji.html" target="_blank">Live Demo</a>
</div>
</div>
</div>
<!-- Add your code above this line -->
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>
</html>