-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
592 lines (592 loc) · 23.2 KB
/
index.html
File metadata and controls
592 lines (592 loc) · 23.2 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
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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link href="./output.css" rel="stylesheet" />
</head>
<body>
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp,container-queries"></script>
<header class="text-gray-600 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-gray-900 mb-4 md:mb-0"
>
<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">Company</span>
</a>
<nav
class="md:ml-auto flex flex-wrap items-center text-base justify-center"
>
<a class="mr-5 hover:text-gray-900">First Link</a>
<a class="mr-5 hover:text-gray-900">Second Link</a>
<a class="mr-5 hover:text-gray-900">Third Link</a>
<a class="mr-5 hover:text-gray-900">Fourth Link</a>
</nav>
<button
class="inline-flex items-center bg-gray-100 border-0 py-1 px-3 focus:outline-none hover:bg-gray-200 rounded text-base mt-4 md:mt-0"
>
Choose
<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-600 body-font">
<div class="container px-5 py-24 mx-auto flex flex-col">
<div class="lg:w-4/6 mx-auto">
<div class="rounded-lg h-64 overflow-hidden">
<img
alt="content"
class="object-cover object-center h-full w-full"
src="img/chastagner-thierry-yEyNEi2FeXU-unsplash.jpg"
/>
</div>
<div class="flex flex-col sm:flex-row mt-10">
<div class="sm:w-1/3 text-center sm:pr-8 sm:py-8">
<div
class="w-20 h-20 rounded-full inline-flex items-center justify-center bg-gray-200 text-gray-400"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-10 h-10"
viewBox="0 0 24 24"
>
<path d="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"></path>
<circle cx="12" cy="7" r="4"></circle>
</svg>
</div>
<div
class="flex flex-col items-center text-center justify-center"
>
<h2 class="font-medium title-font mt-4 text-gray-900 text-lg">
Phoebe Caulfield
</h2>
<div class="w-12 h-1 bg-indigo-500 rounded mt-2 mb-4"></div>
<p class="text-base">
Raclette knausgaard hella meggs normcore williamsburg enamel
pin sartorial venmo tbh hot chicken gentrify portland.
</p>
</div>
</div>
<div
class="sm:w-2/3 sm:pl-8 sm:py-8 sm:border-l border-gray-200 sm:border-t-0 border-t mt-4 pt-4 sm:mt-0 text-center sm:text-left"
>
<p class="leading-relaxed text-lg mb-4">
Meggings portland fingerstache lyft, post-ironic fixie man bun
banh mi umami everyday carry hexagon locavore direct trade art
party. Locavore small batch listicle gastropub farm-to-table
lumbersexual salvia messenger bag. Coloring book flannel
truffaut craft beer drinking vinegar sartorial, disrupt fashion
axe normcore meh butcher. Portland 90's scenester vexillologist
forage post-ironic asymmetrical, chartreuse disrupt butcher
paleo intelligentsia pabst before they sold out four loko. 3
wolf moon brooklyn.
</p>
<a class="text-indigo-500 inline-flex items-center"
>Learn More
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-2"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</div>
</section>
<hr />
<section class="text-gray-600 body-font overflow-hidden">
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-20">
<h1
class="sm:text-4xl text-3xl font-medium title-font mb-2 text-gray-900"
>
Pricing
</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base text-gray-500">
Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical.
</p>
<div
class="flex mx-auto border-2 border-indigo-500 rounded overflow-hidden mt-6"
>
<button
class="py-1 px-4 bg-indigo-500 text-white focus:outline-none"
>
Monthly
</button>
<button class="py-1 px-4 focus:outline-none">Annually</button>
</div>
</div>
<div class="flex flex-wrap -m-4">
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-gray-300 flex flex-col relative overflow-hidden"
>
<h2 class="text-sm tracking-widest title-font mb-1 font-medium">
START
</h2>
<h1
class="text-5xl text-gray-900 pb-4 mb-4 border-b border-gray-200 leading-none"
>
Free
</h1>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Vexillologist pitchfork
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Tumeric plaid portland
</p>
<p class="flex items-center text-gray-600 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Mixtape chillwave tumeric
</p>
<button
class="flex items-center mt-auto text-white bg-gray-400 border-0 py-2 px-4 w-full focus:outline-none hover:bg-gray-500 rounded"
>
Button
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-500 mt-3">
Literally you probably haven't heard of them jean shorts.
</p>
</div>
</div>
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-indigo-500 flex flex-col relative overflow-hidden"
>
<span
class="bg-indigo-500 text-white px-3 py-1 tracking-widest text-xs absolute right-0 top-0 rounded-bl"
>POPULAR</span
>
<h2 class="text-sm tracking-widest title-font mb-1 font-medium">
PRO
</h2>
<h1
class="text-5xl text-gray-900 leading-none flex items-center pb-4 mb-4 border-b border-gray-200"
>
<span>$38</span>
<span class="text-lg ml-1 font-normal text-gray-500">/mo</span>
</h1>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Vexillologist pitchfork
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Tumeric plaid portland
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Hexagon neutra unicorn
</p>
<p class="flex items-center text-gray-600 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Mixtape chillwave tumeric
</p>
<button
class="flex items-center mt-auto text-white bg-indigo-500 border-0 py-2 px-4 w-full focus:outline-none hover:bg-indigo-600 rounded"
>
Button
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-500 mt-3">
Literally you probably haven't heard of them jean shorts.
</p>
</div>
</div>
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-gray-300 flex flex-col relative overflow-hidden"
>
<h2 class="text-sm tracking-widest title-font mb-1 font-medium">
BUSINESS
</h2>
<h1
class="text-5xl text-gray-900 leading-none flex items-center pb-4 mb-4 border-b border-gray-200"
>
<span>$56</span>
<span class="text-lg ml-1 font-normal text-gray-500">/mo</span>
</h1>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Vexillologist pitchfork
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Tumeric plaid portland
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Hexagon neutra unicorn
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Vexillologist pitchfork
</p>
<p class="flex items-center text-gray-600 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Mixtape chillwave tumeric
</p>
<button
class="flex items-center mt-auto text-white bg-gray-400 border-0 py-2 px-4 w-full focus:outline-none hover:bg-gray-500 rounded"
>
Button
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-500 mt-3">
Literally you probably haven't heard of them jean shorts.
</p>
</div>
</div>
<div class="p-4 xl:w-1/4 md:w-1/2 w-full">
<div
class="h-full p-6 rounded-lg border-2 border-gray-300 flex flex-col relative overflow-hidden"
>
<h2 class="text-sm tracking-widest title-font mb-1 font-medium">
SPECIAL
</h2>
<h1
class="text-5xl text-gray-900 leading-none flex items-center pb-4 mb-4 border-b border-gray-200"
>
<span>$72</span>
<span class="text-lg ml-1 font-normal text-gray-500">/mo</span>
</h1>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Vexillologist pitchfork
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Tumeric plaid portland
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Hexagon neutra unicorn
</p>
<p class="flex items-center text-gray-600 mb-2">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Vexillologist pitchfork
</p>
<p class="flex items-center text-gray-600 mb-6">
<span
class="w-4 h-4 mr-2 inline-flex items-center justify-center bg-gray-400 text-white rounded-full flex-shrink-0"
>
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2.5"
class="w-3 h-3"
viewBox="0 0 24 24"
>
<path d="M20 6L9 17l-5-5"></path>
</svg> </span
>Mixtape chillwave tumeric
</p>
<button
class="flex items-center mt-auto text-white bg-gray-400 border-0 py-2 px-4 w-full focus:outline-none hover:bg-gray-500 rounded"
>
Button
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="w-4 h-4 ml-auto"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</button>
<p class="text-xs text-gray-500 mt-3">
Literally you probably haven't heard of them jean shorts.
</p>
</div>
</div>
</div>
</div>
</section>
<hr />
</body>
</html>