-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (112 loc) · 4.92 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./output.css" rel="stylesheet" />
</head>
<body>
<!-- This example requires Tailwind CSS v2.0+ -->
<div class="relative overflow-hidden bg-white">
<div class="pt-16 pb-80 sm:pt-24 sm:pb-40 lg:pt-40 lg:pb-48">
<div class="relative px-4 mx-auto max-w-7xl sm:px-6 lg:px-8 sm:static">
<div class="sm:max-w-lg">
<h1
class="text-4xl font-extrabold tracking-tight text-gray-900 font sm:text-6xl"
>
Summer styles are finally here
</h1>
<p class="mt-4 text-xl text-gray-500">
This year, our new summer collection will shelter you from the
harsh elements of a world that doesn't care if you live or die.
</p>
</div>
<div>
<div class="mt-10">
<!-- Decorative image grid -->
<div
aria-hidden="true"
class="pointer-events-none lg:absolute lg:inset-y-0 lg:max-w-7xl lg:mx-auto lg:w-full"
>
<div
class="absolute transform sm:left-1/2 sm:top-0 sm:translate-x-8 lg:left-1/2 lg:top-1/2 lg:-translate-y-1/2 lg:translate-x-8"
>
<div class="flex items-center space-x-6 lg:space-x-8">
<div
class="grid flex-shrink-0 grid-cols-1 gap-y-6 lg:gap-y-8"
>
<div
class="h-64 overflow-hidden rounded-lg w-44 sm:opacity-0 lg:opacity-100"
>
<img
src="https://tailwindui.com/img/ecommerce-images/home-page-03-hero-image-tile-01.jpg"
alt=""
class="object-cover object-center w-full h-full"
/>
</div>
<div class="h-64 overflow-hidden rounded-lg w-44">
<img
src="https://tailwindui.com/img/ecommerce-images/home-page-03-hero-image-tile-02.jpg"
alt=""
class="object-cover object-center w-full h-full"
/>
</div>
</div>
<div
class="grid flex-shrink-0 grid-cols-1 gap-y-6 lg:gap-y-8"
>
<div class="h-64 overflow-hidden rounded-lg w-44">
<img
src="https://tailwindui.com/img/ecommerce-images/home-page-03-hero-image-tile-03.jpg"
alt=""
class="object-cover object-center w-full h-full"
/>
</div>
<div class="h-64 overflow-hidden rounded-lg w-44">
<img
src="https://tailwindui.com/img/ecommerce-images/home-page-03-hero-image-tile-04.jpg"
alt=""
class="object-cover object-center w-full h-full"
/>
</div>
<div class="h-64 overflow-hidden rounded-lg w-44">
<img
src="https://tailwindui.com/img/ecommerce-images/home-page-03-hero-image-tile-05.jpg"
alt=""
class="object-cover object-center w-full h-full"
/>
</div>
</div>
<div
class="grid flex-shrink-0 grid-cols-1 gap-y-6 lg:gap-y-8"
>
<div class="h-64 overflow-hidden rounded-lg w-44">
<img
src="https://tailwindui.com/img/ecommerce-images/home-page-03-hero-image-tile-06.jpg"
alt=""
class="object-cover object-center w-full h-full"
/>
</div>
<div class="h-64 overflow-hidden rounded-lg w-44">
<img
src="https://tailwindui.com/img/ecommerce-images/home-page-03-hero-image-tile-07.jpg"
alt=""
class="object-cover object-center w-full h-full"
/>
</div>
</div>
</div>
</div>
</div>
<a
href="#"
class="inline-block px-8 py-3 font-medium text-center text-white bg-indigo-600 border border-transparent rounded-md hover:bg-indigo-700"
>Shop Collection</a
>
</div>
</div>
</div>
</div>
</div>
</body>
</html>