-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (113 loc) · 3.93 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
<!DOCTYPE html>
<html lang="en">
<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" />
<title>Document</title>
</head>
<body>
<div class="mx-auto max-w-2xl p-8">
<h2
class="text-purple-600 font-semibold tracking-wide sm:text-lg sm:leading-snug uppercase pb-2"
>
Introducing
</h2>
<p
class="lg:txt-6xl text-5xl font-extrabold leading-none text-gray-900 pb-6"
>
Justin's Kitty Stories
</p>
<ul class="flex space-x-6">
<li class="flex flex-col items-center space-y-1">
<div
class="relative bg-gradient-to-tr from-yellow-400 p-1 to-purple-600 rounded-full"
>
<a
class="block rounded-full bg-white p-1 transform transition hover:-rotate-6"
="#"
>
<img
class="h-24 w-24 rounded-full"
src="https://placekitten.com/250/250"
alt="cute kitty"
/>
</a>
<button
class="absolute bottom-0 right-1 bg-blue-500 h-8 w-8 rounded-full text-white text-2xl font-semibold border-4 border-white flex justify-center items-center font-mono hover:bg-blue-700"
>
+
</button>
</div>
<a href="#">You</a>
</li>
<li class="flex flex-col items-center space-y-1">
<div
class="bg-gradient-to-tr from-yellow-400 p-1 to-purple-600 rounded-full"
>
<a
class="block rounded-full bg-white p-1 transform transition hover:-rotate-6"
="#"
>
<img
class="h-24 w-24 rounded-full"
src="https://placekitten.com/200/200"
alt="cute kitty"
/>
<button
class="absolute bottom-0 right-1 bg-blue-500 h-8 w-8 rounded-full text-white text-2xl font-semibold border-4 border-white flex justify-center items-center font-mono hover:bg-blue-700"
>
+
</button>
</a>
</div>
<a href="#">Bootsie</a>
</li>
<li class="flex flex-col items-center space-y-1">
<div
class="bg-gradient-to-tr from-yellow-400 p-1 to-purple-600 rounded-full"
>
<a
class="block rounded-full bg-white p-1 transform transition hover:-rotate-6"
="#"
>
<img
class="h-24 w-24 rounded-full"
src="https://placekitten.com/300/300"
alt="cute kitty"
/>
<button
class="absolute bottom-0 right-1 bg-blue-500 h-8 w-8 rounded-full text-white text-2xl font-semibold border-4 border-white flex justify-center items-center font-mono hover:bg-blue-700"
>
+
</button>
</a>
</div>
<a href="#">Sketch</a>
</li>
<li class="flex flex-col items-center space-y-1">
<div
class="bg-gradient-to-tr from-yellow-400 p-1 to-purple-600 rounded-full"
>
<a
class="block rounded-full bg-white p-1 transform transition hover:-rotate-6"
="#"
>
<img
class="h-24 w-24 rounded-full"
src="https://placekitten.com/400/400"
alt="cute kitty"
/>
<button
class="absolute bottom-0 right-1 bg-blue-500 h-8 w-8 rounded-full text-white text-2xl font-semibold border-4 border-white flex justify-center items-center font-mono hover:bg-blue-700"
>
+
</button>
</a>
</div>
<a href="#">Blam blam</a>
</li>
</ul>
</div>
</body>
</html>