-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tailwind Project</title>
<link href="./output.css" rel="stylesheet">
</head>
<body>
<div class="bg-slate-500 grid place-content-center p-2.5 h-screen">
<div>
<div class="max-w-sm mx-auto bg-white rounded-lg overflow-hidden md:max-w-xl">
<div class="md:flex">
<div>
<img class="h-48 w-full object-cover md:h-full md:w-48" src="https://images.pexels.com/photos/4113930/pexels-photo-4113930.jpeg?auto=compress&cs=tinysrgb&w=600&lazy=load"/>
</div>
<div class="p-8">
<div class="font-semibold text-lg ">
This is a card ..
</div>
<a class="font-sans mt-3"> This is the power of Tailwind, you love it once you strt using Tailwind. </a>
<p class="text-slate-600 font-extralight">Lorem ipsum dolor sit amet.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>