-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpages.html
569 lines (568 loc) · 35.6 KB
/
webpages.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Ash's Site</title>
<link rel="shortcut icon" href="images/log.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header class="text-gray-400 bg-gray-900 body-font">
<div class="container mx-auto flex flex-wrap p-5 flex-col md:flex-row items-center">
<a class="flex title-font font-medium items-center text-white mb-4 md:mb-0" href="index.html">
<img src="images/log.png" height="100px" width="90px">
<!-- <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-10 h-10 text-white p-2 bg-indigo-500 rounded-full" viewBox="0 0 24 24">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path>
</svg> -->
<span class="ml-3 text-xl">Ashmit's Codes</span>
</a>
<nav class="md:mr-auto md:ml-4 md:py-1 md:pl-4 md:border-l md:border-gray-700 flex flex-wrap items-center text-base justify-center">
<a class="mr-5 hover:text-white" href="index.html">Home</a>
<a class="mr-5 hover:text-white" href="about.html" target="_blank">About</a>
<a class="mr-5 hover:text-white" href="webpages.html">Webpages</a>
<a class="mr-5 hover:text-white" href="contact.html">Contact</a>
<audio id="audio-element" src="music/theme1.m4a"></audio>
<button id="toggle-button">
<img class="play-icon" src="https://readme-typing-svg.demolab.com?font=Marck+Script&duration=4500&pause=102500&color=22C55E¢er=true&vCenter=true&width=435&lines=Click+here+to+Enable+Music" alt="Typing SVG" style="display: inline;" />
<img class="pause-icon" src="https://readme-typing-svg.demolab.com?font=Marck+Script&duration=4500&pause=102500&color=22C55E¢er=true&vCenter=true&width=435&lines=Pause" alt="Typing SVG" style="display: none;" />
</button>
<script>
const audioElement = document.getElementById("audio-element");
const toggleButton = document.getElementById("toggle-button");
const playIcon = document.querySelector(".play-icon");
const pauseIcon = document.querySelector(".pause-icon");
toggleButton.addEventListener("click", () => {
if (audioElement.paused) {
playIcon.style.display = "none";
pauseIcon.style.display = "inline-block";
audioElement.play();
} else {
playIcon.style.display = "inline-block";
pauseIcon.style.display = "none";
audioElement.pause();
}
});
</script>
</nav>
<button class="inline-flex items-center bg-red-800 border-0 py-1 px-3 focus:outline-none hover:bg-red-700 rounded text-base mt-4 md:mt-0"><a href="https://www.w3schools.com/html/" target="_blank"> Explore HTML</a>
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-4 h-4 ml-1" viewBox="0 0 24 24">
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
</div>
</header>
<hr>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">First Class</span>
<span class="mt-1 text-gray-500 text-sm">4th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Heading tag, Paragraph tag, Bold tag, Italic tag, Alignment</h2>
<p class="leading-relaxed">This was first HTML class, in it we had learned some really simple html tags to start with our HTML journey.</p>
<a class="text-pink-400 inline-flex items-center mt-4" href="pages/first_class.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Second Class</span>
<span class="mt-1 text-gray-500 text-sm">8th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">HR tag and Img tag</h2>
<p class="leading-relaxed">This was our second HTML class and in it we had learned the horizontal row tag and the image tag.</p>
<a class="text-pink-400 inline-flex items-center mt-4" href="pages/9th_sept.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Third class</span>
<span class="mt-1 text-gray-500 text-sm">11th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">The heading tag</h2>
<p class="leading-relaxed">This was our third class in it we had learned about the heading tag.</p>
<a class="text-pink-400 inline-flex items-center mt-4" href="pages/heading_tag.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Fourth Class</span>
<span class="mt-1 text-gray-500 text-sm">11th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Alignment</h2>
<p class="leading-relaxed">This was our fourth class in it we had learned about the center tag and the dir attribute.</p>
<a class="text-red-400 inline-flex items-center mt-4" href="pages/alignment.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Fifth class</span>
<span class="mt-1 text-gray-500 text-sm">12th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Font attributes</h2>
<p class="leading-relaxed">This was our fifth class in it we had learned about the Bold tag, Italic tag, Underline tag.</p>
<a class="text-red-400 inline-flex items-center mt-4" href="pages/font_attributes.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Sixth class</span>
<span class="mt-1 text-gray-500 text-sm">15th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Br and Hr tags</h2>
<p class="leading-relaxed">This was our sixth class in it we had learned about the break row and horizontal row tags.</p>
<a class="text-red-400 inline-flex items-center mt-4" href="pages/br_and_hr.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Seventh class</span>
<span class="mt-1 text-gray-500 text-sm">16th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Sup tag and Sub tag</h2>
<p class="leading-relaxed">This was our seventh class in it we had learned the superscript and the subscript tags.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="pages/sub_and_sup.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Eighth class</span>
<span class="mt-1 text-gray-500 text-sm">17th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Image tag</h2>
<p class="leading-relaxed">This was our eighth class in it we had learned about the image tag and its font_attributes.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="pages/image.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Ninth class</span>
<span class="mt-1 text-gray-500 text-sm">18th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Abbreviation tag and Anchor tag</h2>
<p class="leading-relaxed">This was our ninth class in it we had learned about the Abbreviation tag and the Anchor tag.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="pages/abbreviation_anchor.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Tenth class</span>
<span class="mt-1 text-gray-500 text-sm">19th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Recap</h2>
<p class="leading-relaxed">This was our tenth class in it we had implemented all the tags that we had learned in our previous classes.</p>
<a class="text-blue-400 inline-flex items-center mt-4" href="pages/All_tags.html" target="_blank
">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Eleventh class</span>
<span class="mt-1 text-gray-500 text-sm">22nd September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Caption tag, Table tag, Tr tag, Th tag, Td tag</h2>
<p class="leading-relaxed">This was our eleventh class in it we had learned about the Caption tag, Table tag and the tags that come under it i.e table row tag, table heading tag, table data tag.</p>
<a class="text-blue-400 inline-flex items-center mt-4" href="pages/table.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Twelfth class</span>
<span class="mt-1 text-gray-500 text-sm">23rd September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Mark and Strike tags</h2>
<p class="leading-relaxed">This was out twelfth class in it we had learned about the mark tag and the strike tag.</p>
<a class="text-blue-400 inline-flex items-center mt-4" href="pages/12th_sept_mark_strike_tag.html" target="_blank" >View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Thirteenth class</span>
<span class="mt-1 text-gray-500 text-sm">24 September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">List tag,</h2>
<p class="leading-relaxed">This was out Thirteenth class in it we had learned about the list tag and the.</p>
<a class="text-green-400 inline-flex items-center mt-4" href="pages/list_tag.html">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Fourteenth class</span>
<span class="mt-1 text-gray-500 text-sm">25th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Practice</h2>
<p class="leading-relaxed">This was our fourteenth class, in it we had practiced the table tag and made our timetable.</p>
<a class="text-green-400 inline-flex items-center mt-4" href="pages/timetable.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Fifteenth class</span>
<span class="mt-1 text-gray-500 text-sm">26th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Rowspan and Colspan</h2>
<p class="leading-relaxed">This was our fifteenth class in it we had learned about the rowspan and colspan attribute of the table tag</p>
<a class="text-green-400 inline-flex items-center mt-4" href="pages/rowspan_colspan.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Sixteenth class</span>
<span class="mt-1 text-gray-500 text-sm">29th September 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Iframe tag</h2>
<p class="leading-relaxed">This was our sixteenth class in it we had learned about the iframe tag.</p>
<a class="text-indigo-400 inline-flex items-center mt-4" href="pages/29th_sept.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Seventeenth class</span>
<span class="mt-1 text-gray-500 text-sm">3rd October 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Embedding</h2>
<p class="leading-relaxed">This was our seventeenth class and in it we had learned about embedding things inside the webpage.</p>
<a class="text-indigo-400 inline-flex items-center mt-4" href="pages/3rd_october.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Eighteenth class</span>
<span class="mt-1 text-gray-500 text-sm">4th October 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">CSS</h2>
<p class="leading-relaxed">This was our eighteenth class and today we had officially started doing CSS.</p>
<a class="text-indigo-400 inline-flex items-center mt-4" href="pages/6th_oct.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Nineteenth class</span>
<span class="mt-1 text-gray-500 text-sm">5th October 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Forms</h2>
<p class="leading-relaxed">Learned about forms and created one.</p>
<a class="text-purple-400 inline-flex items-center mt-4" href="pages/6thnov.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Twentieth class</span>
<span class="mt-1 text-gray-500 text-sm">6th October 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Another Form</h2>
<p class="leading-relaxed">Created another form for practice.</p>
<a class="text-purple-400 inline-flex items-center mt-4" href="/pages/forms.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Twenty First class</span>
<span class="mt-1 text-gray-500 text-sm">7th October 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Google fonts</h2>
<p class="leading-relaxed">Using other fonts rather than the ones pre-defined using google fonts.</p>
<a class="text-purple-400 inline-flex items-center mt-4" href="pages/css cwh.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="text-gray-400 bg-gray-900 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="-my-8 divide-y-2 divide-gray-800">
<div class="py-8 flex flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Twenty second class</span>
<span class="mt-1 text-gray-500 text-sm">8th October 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Planning</h2>
<p class="leading-relaxed">Trying to note down plans.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="pages/cwh.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Twenty third class</span>
<span class="mt-1 text-gray-500 text-sm">9th October 2022</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Resume</h2>
<p class="leading-relaxed">Created a resume using HTML to bolster the topics that i had learnt till now.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="resume.html">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">Twenty fourth class</span>
<span class="mt-1 text-gray-500 text-sm">10th Nov</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Time Table</h2>
<p class="leading-relaxed">Tried creating a schdule as exams were approaching.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="pages/TT.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">       Website</span>
<span class="mt-1 text-gray-500 text-sm">       30th Nov</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">6 AM Fitness</h2>
<p class="leading-relaxed">Created a gym website as a project.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="https://ashgym.web.app" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
<hr>
<div class="py-8 flex border-t-2 border-gray-800 flex-wrap md:flex-nowrap">
<div class="md:w-64 md:mb-0 mb-6 flex-shrink-0 flex flex-col">
<span class="font-semibold title-font text-white">       About page</span>
<span class="mt-1 text-gray-500 text-sm">       13th Dec</span>
</div>
<div class="md:flex-grow">
<h2 class="text-2xl font-medium text-white title-font mb-2">Ashmit's CV</h2>
<p class="leading-relaxed">Designed about page for personal website.</p>
<a class="text-yellow-400 inline-flex items-center mt-4" href="pages/about.html" target="_blank">View
<svg class="w-4 h-4 ml-2" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M5 12h14"></path>
<path d="M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
<hr>
</div>
<footer class="text-gray-400 bg-gray-900 body-font">
<div class="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
<a class="flex title-font font-medium items-center md:justify-start justify-center text-white">
<img src="images/log.png" height="100px" width="90px">
<span class="ml-3 text-xl">Ash codesx</span>
</a>
<p class="text-sm text-gray-400 sm:ml-4 sm:pl-4 sm:border-l-2 sm:border-gray-800 sm:py-2 sm:mt-0 mt-4">© 2022
Ash_Writes —
<a href="" class="text-gray-500 ml-1" target="_blank"
rel="noopener noreferrer">@ashmitmehta</a>
</p>
<span class="inline-flex sm:ml-auto sm:mt-0 mt-4 justify-center sm:justify-start">
<a class="text-gray-400" href="https://www.facebook.com/ashmit.mehta.142/" target="_blank">
<svg fill="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="w-5 h-5"
viewBox="0 0 24 24">
<path d="M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3z"></path>
</svg>
</a>
<a class="ml-3 text-gray-400" href="https://www.instagram.com/mehta.ashmit/" target="_blank">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
class="w-5 h-5" viewBox="0 0 24 24">
<rect width="20" height="20" x="2" y="2" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37zm1.5-4.87h.01"></path>
</svg>
</a>
<a class="ml-3 text-gray-400" href="https://linkedin.com/in/ashmit-mehta" target="_blank">
<svg fill="currentColor" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"
class="w-5 h-5" viewBox="0 0 24 24">
<path stroke="none"
d="M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2z"></path>
<circle cx="4" cy="4" r="2" stroke="none"></circle>
</svg>
</a>
</a>
<a class="ml-3 text-gray-400" href="https://github.com/Ash-codes18" target="_blank">
<i class="fa fa-github" style="font-size:24px"></i>
</a>
</span>
</div>
</footer>
</body>
</html>