-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
494 lines (489 loc) · 20.9 KB
/
Copy pathindex.html
File metadata and controls
494 lines (489 loc) · 20.9 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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Csikis's Blog</title>
<link rel="stylesheet" href="/src/styles/reset.css" />
<link rel="stylesheet" href="/src/styles/style.css" />
<script src="https://cdn.tailwindcss.com"></script>
<script src="/src/scripts/index.js"></script>
<link
rel="icon"
type="image/x-icon"
href="https://www.svgrepo.com/show/271153/blogger.svg"
/>
</head>
<body class="font-sans">
<!-- Navbar -->
<nav class="bg-gray-800">
<div class="mx-auto max-w-7xl px-2 sm:px-6 lg:px-8">
<div class="relative flex h-16 items-center justify-between">
<div class="absolute inset-y-0 right-0 flex items-center sm:hidden">
<!-- Mobile menu button-->
<button
id="btn-menu"
onclick="toggle()"
type="button"
class="relative inline-flex items-center justify-center rounded-md p-2 text-gray-400 hover:bg-gray-700 hover:text-white focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white"
aria-controls="mobile-menu"
aria-expanded="false"
>
<span class="absolute -inset-0.5"></span>
<span class="sr-only">Open main menu</span>
<!--
Icon when menu is closed.
Menu open: "hidden", Menu closed: "block"
-->
<svg
id="btn-closed"
class="block h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
aria-hidden="true"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5"
/>
</svg>
<!--
Icon when menu is open.
Menu open: "block", Menu closed: "hidden"
-->
<svg
id="btn-open"
class="hidden h-6 w-6"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
aria-hidden="true"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
</button>
</div>
<div
class="flex flex-1 items-center sm:items-stretch sm:justify-start"
>
<!-- Logo -->
<a
href="index.html"
class="cursor-pointer px-1 flex flex-shrink-0 items-center"
>
<img
class="h-8 w-auto"
src="https://www.svgrepo.com/show/271153/blogger.svg"
alt="Csikis's Blog"
/>
</a>
<!-- Desktop menu -->
<div class="hidden sm:ml-6 sm:block">
<div class="flex space-x-4">
<a
href="#"
class="rounded-md bg-gray-900 px-3 py-2 text-sm font-medium text-white"
aria-current="page"
>Blogs</a
>
<a
href="src/pages/subscribe.html"
class="rounded-md px-3 py-2 text-sm font-medium text-gray-300 hover:bg-gray-700 hover:text-white"
>Subscribe</a
>
</div>
</div>
</div>
<div
class="absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0"
></div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden" id="mobile-menu">
<div class="space-y-1 px-2 pb-3 pt-2">
<a
href="index.html"
class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-gray-700 hover:text-white"
aria-current="page"
>Blogs</a
>
<a
href="src/pages/subscribe.html"
class="block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-gray-700 hover:text-white"
>Subscribe</a
>
</div>
</div>
</nav>
<!-- Blogs -->
<main class="min-h-screen">
<div class="bg-white py-8 sm:py-16">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<!-- Title -->
<section class="mx-auto max-w-2xl lg:mx-0">
<h2
class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl"
>
Csikis's blog
</h2>
<p class="mt-2 text-lg leading-8 text-gray-600">
Read fascinating blogs from my frineds and me!
</p>
</section>
<!-- Blogs -->
<section
class="mx-auto pt-4 mt-4 grid max-w-2xl grid-cols-1 gap-8 border-t border-gray-200 sm:mt-4 sm:pt-4 sm:grid-cols-2 lg:mx-0 lg:max-w-none lg:grid-cols-3"
>
<article
onclick="location.href='/src/pages/blog.html'"
class="cursor-pointer flex flex-col items-start justify-between p-3 rounded shadow-xl hover:bg-neutral-50"
>
<div>
<img
class="rounded aspect-video h-full object-cover w-full"
src="https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="image"
/>
</div>
<div class="flex items-center gap-x-4 text-xs mt-5">
<time datetime="2020-03-16" class="text-gray-500"
>Mar 16, 2020</time
>
<a
class="relative z-10 rounded-full bg-gray-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-200"
>Marketing</a
>
</div>
<div class="group relative">
<h3
class="mt-3 text-lg font-semibold leading-6 text-gray-900 group-hover:text-gray-600"
>
<span class="absolute inset-0"></span>
Boost your conversion rate
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-600">
Illo sint voluptas. Error voluptates culpa eligendi. Hic vel
totam vitae illo. Non aliquid explicabo necessitatibus unde.
Sed exercitationem placeat consectetur nulla deserunt vel.
Iusto corrupti dicta.
</p>
</div>
<div class="relative mt-5 flex items-center gap-x-4">
<img
src="https://images.unsplash.com/photo-1519244703995-f4e0f30006d5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
class="h-10 w-10 rounded-full bg-gray-50"
/>
<div class="text-sm leading-6">
<p class="font-semibold text-gray-900">
<span>
<span class="absolute inset-0"></span> Michael
Foster</span
>
</p>
<p class="text-gray-600">Co-Founder / CTO</p>
</div>
</div>
</article>
<article
onclick="location.href='/src/pages/blog.html'"
class="cursor-pointer flex flex-col items-start justify-between p-3 rounded shadow-xl hover:bg-neutral-50"
>
<div>
<img
class="rounded aspect-video h-full object-cover w-full"
src="https://images.unsplash.com/photo-1483058712412-4245e9b90334?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="image"
/>
</div>
<div class="flex items-center gap-x-4 text-xs mt-5">
<time datetime="2020-03-16" class="text-gray-500"
>Nov 01, 2024</time
>
<a
href="#"
class="relative z-10 rounded-full bg-gray-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-200"
>Sales</a
>
</div>
<div class="group relative">
<h3
class="mt-3 text-lg font-semibold leading-6 text-gray-900 group-hover:text-gray-600"
>
<a>
<span>
<span class="absolute inset-0"></span> How to use search
engine optimization to drive sales</span
>
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-600">
Optio cum necessitatibus dolor voluptatum provident commodi
et. Qui aperiam fugiat nemo cumque.
</p>
</div>
<div class="relative mt-5 flex items-center gap-x-4">
<img
src="https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt="image"
class="h-10 w-10 rounded-full bg-gray-50"
/>
<div class="text-sm leading-6">
<p class="font-semibold text-gray-900">
<a href="#">
<span>
<span class="absolute inset-0"></span>
Lindsay Walton
</span>
</a>
</p>
<p class="text-gray-600">Front-end Developer</p>
</div>
</div>
</article>
<article
onclick="location.href='/src/pages/blog.html'"
class="cursor-pointer flex flex-col items-start justify-between p-3 rounded shadow-xl hover:bg-neutral-50"
>
<div>
<img
class="rounded aspect-video h-full object-cover w-full"
src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=1115&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="image"
/>
</div>
<div class="flex items-center gap-x-4 text-xs mt-5">
<time datetime="2020-03-16" class="text-gray-500"
>Mar 16, 2020</time
>
<a
href="#"
class="relative z-10 rounded-full bg-gray-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-200"
>Business</a
>
</div>
<div class="group relative">
<h3
class="mt-3 text-lg font-semibold leading-6 text-gray-900 group-hover:text-gray-600"
>
<a>
<span class="absolute inset-0"></span>
Improve your customer experience
</a>
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-600">
Cupiditate maiores ullam eveniet adipisci in doloribus nulla
minus. Voluptas iusto libero adipisci rem et corporis. Nostrud
sint anim sunt aliqua. Nulla eu labore irure incididunt velit
cillum quis magna dolore.
</p>
</div>
<div class="relative mt-5 flex items-center gap-x-4">
<img
src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
class="h-10 w-10 rounded-full bg-gray-50"
/>
<div class="text-sm leading-6">
<p class="font-semibold text-gray-900">
<a href="#">
<span class="absolute inset-0"></span>
Tom Bumstead
</a>
</p>
<p class="text-gray-600">Director of Product</p>
</div>
</div>
</article>
<article
onclick="location.href='/src/pages/blog.html'"
class="cursor-pointer flex flex-col items-start justify-between p-3 rounded shadow-xl hover:bg-neutral-50"
>
<div>
<img
class="rounded aspect-video h-full object-cover w-full"
src="https://images.unsplash.com/photo-1587614313085-5da51cebd8ac?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Marketing strategy"
/>
</div>
<div class="flex items-center gap-x-4 text-xs mt-5">
<time datetime="2022-01-05" class="text-gray-500"
>Jan 5, 2022</time
>
<span
class="relative z-10 rounded-full bg-gray-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-200"
>Business</span
>
</div>
<div class="group relative">
<h3
class="mt-3 text-lg font-semibold leading-6 text-gray-900 group-hover:text-gray-600"
>
How to Craft the Perfect Marketing Strategy
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-600">
Discover the top 5 tips to create a compelling marketing
strategy that resonates with your audience and boosts your
brand presence.
</p>
</div>
<div class="relative mt-5 flex items-center gap-x-4">
<img
src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
class="h-10 w-10 rounded-full bg-gray-50"
/>
<div class="text-sm leading-6">
<p class="font-semibold text-gray-900">Sarah Connors</p>
<p class="text-gray-600">Marketing Expert</p>
</div>
</div>
</article>
<article
onclick="location.href='/src/pages/blog.html'"
class="cursor-pointer flex flex-col items-start justify-between p-3 rounded shadow-xl hover:bg-neutral-50"
>
<div>
<img
class="rounded aspect-video h-full object-cover w-full"
src="https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Financial Planning"
/>
</div>
<div class="flex items-center gap-x-4 text-xs mt-5">
<time datetime="2021-10-12" class="text-gray-500"
>Oct 12, 2021</time
>
<span
class="relative z-10 rounded-full bg-gray-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-200"
>Finance</span
>
</div>
<div class="group relative">
<h3
class="mt-3 text-lg font-semibold leading-6 text-gray-900 group-hover:text-gray-600"
>
Mastering Personal Finance: Top 7 Secrets for Success
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-600">
Learn the key principles of managing your personal finances,
from budgeting to investments, and secure a financially stable
future.
</p>
</div>
<div class="relative mt-5 flex items-center gap-x-4">
<img
src="https://images.unsplash.com/photo-1524504388940-b1c1722653e1?ixlib=rb-1.2.1&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
class="h-10 w-10 rounded-full bg-gray-50"
/>
<div class="text-sm leading-6">
<p class="font-semibold text-gray-900">John Doe</p>
<p class="text-gray-600">Financial Advisor</p>
</div>
</div>
</article>
<article
onclick="location.href='/src/pages/blog.html'"
class="cursor-pointer flex flex-col items-start justify-between p-3 rounded shadow-xl hover:bg-neutral-50"
>
<div>
<img
class="rounded aspect-video h-full object-cover w-full"
src="https://images.unsplash.com/photo-1620862657788-a403bdf6dd63?q=80&w=1171&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D"
alt="Productivity Hacks"
/>
</div>
<div class="flex items-center gap-x-4 text-xs mt-5">
<time datetime="2022-05-20" class="text-gray-500"
>May 20, 2022</time
>
<span
class="relative z-10 rounded-full bg-gray-100 px-3 py-1.5 font-medium text-gray-600 hover:bg-gray-200"
>Productivity</span
>
</div>
<div class="group relative">
<h3
class="mt-3 text-lg font-semibold leading-6 text-gray-900 group-hover:text-gray-600"
>
10 Productivity Hacks for Remote Workers
</h3>
<p class="mt-5 line-clamp-3 text-sm leading-6 text-gray-600">
Maximize your efficiency while working remotely with these
practical tips designed for both professionals and
freelancers.
</p>
</div>
<div class="relative mt-5 flex items-center gap-x-4">
<img
src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-1.2.1&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
alt=""
class="h-10 w-10 rounded-full bg-gray-50"
/>
<div class="text-sm leading-6">
<p class="font-semibold text-gray-900">Jane Smith</p>
<p class="text-gray-600">Remote Work Expert</p>
</div>
</div>
</article>
</section>
<!-- Video -->
<section class="mx-auto max-w-2xl lg:max-w-none mt-14">
<div>
<h2 class="text-3xl font-bold">Check this video about blogs!</h2>
</div>
<iframe
height="400"
class="mt-8 rounded w-full :hover:scale-105" "
src="https://www.youtube.com/embed/qldf3CPLqJA?si=YSftX-fu9lJsTKgs"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
>
</iframe>
</section>
<!-- Subscribe -->
<section class="mx-auto max-w-2xl lg:max-w-none mt-14">
<div>
<h2 class="text-3xl font-bold">
Like what you read? Subscribe to our newsletter!
</h2>
<p class="mt-2 text-gray-600">
The latest news, articles, and resources, sent to your inbox
weekly.
</p>
</div>
<div class="mt-8">
<a
href="src/pages/subscribe.html"
class="rounded-md block sm:inline text-center sm:text-left bg-gray-900 px-5 py-2.5 text-sm font-bold text-white shadow-sm hover:bg-gray-700"
>
Subscribe
</a>
</div>
</section>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800">
<div class="mx-auto max-w-2xl lg:max-w-7xl px-4 py-12 sm:px-6 lg:px-8">
<h3 class="text-white">
@ 2024 Csikis's Blog, Inc. All rights reserved
</h3>
</div>
</footer>
</body>
</html>