-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (95 loc) · 2.97 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
<!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>Dachshund Tailwind CSS Histories</title>
<link rel="stylesheet" href="/css/tailwind.css" />
</head>
<body>
<div class="max-w-2xl mx-auto p-8">
<h2
class="sm:text-lg sm:leading-snug font-semibold tracking-wide uppercase text-fuchsia-600 mb-2"
>
Introducing...
</h2>
<p
class="text-4xl lg:text-6xl leading-none font-extrabold text-gray-900 tracking-tight mb-6"
>
Dachshund Tailwind 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 to-fuchsia-600 p-1 rounded-full ring:"
>
<a
class="block bg-white p-1 rounded-full transform transition hover:-rotate-6"
href="#"
>
<img
class="h-24 w-24 rounded-full"
src="/img/you.jpg"
alt="you"
/>
</a>
<button class="create-story">+</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 to-fuchsia-600 p-1 rounded-full"
>
<a
class="block bg-white p-1 rounded-full transform transition hover:-rotate-6"
href="#"
>
<img
class="h-24 w-24 rounded-full"
src="/img/hermanos.jpg"
alt="miroycomotodo87"
/>
</a>
</div>
<a href="#">miroycomotodo87</a>
</li>
<li class="flex flex-col items-center space-y-1">
<div
class="bg-gradient-to-tr from-yellow-400 to-fuchsia-600 p-1 rounded-full"
>
<a
class="block bg-white p-1 rounded-full transform transition hover:-rotate-6"
href="#"
>
<img
class="h-24 w-24 rounded-full"
src="/img/fit.jpg"
alt="soyfit23"
/>
</a>
</div>
<a href="#">soyfit23</a>
</li>
<li class="flex flex-col items-center space-y-1">
<div
class="bg-gradient-to-tr from-yellow-400 to-fuchsia-600 p-1 rounded-full"
>
<a
class="block bg-white p-1 rounded-full transform transition hover:-rotate-6"
href="#"
>
<img
class="h-24 w-24 rounded-full"
src="/img/olfatin.jpeg"
alt="olfatin12"
/>
</a>
</div>
<a href="#">olfatin12</a>
</li>
</ul>
</div>
</body>
</html>