-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello TailWindCss</title>
<link href="" rel="stylesheet">
<link href="/dist/output.css" rel="stylesheet">
</head>
<body class="p-5">
<div class="container mx-auto">
<h1 class="mt-2 font-bold text-4xl text-cyan-600 text-center">npx tailwindcss init</h1>
<section class="bg-gray-50 rounded-3xl drop-shadow-md">
<div class="py-8 px-4 mx-auto max-w-screen-xl text-center">
<h1 class="mb-4 text-4xl font-extrabold tracking-wide leading-none text-slate-800">
TailwindCss Tutorial
</h1>
<p class="mb-8 text-lg font-normal text-slate-700">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequuntur dicta iusto repudiandae sequi
soluta. Accusantium, dicta dolorem earum iste recusandae saepe totam? Amet eveniet neque ratione
repellendus similique! Accusamus, soluta.
</p>
<a href="#"
class="inline-flex justify-center items-center py-3 px-5 text-base font-medium text-white rounded-sm shadow-xs
bg-sky-300 hover:cursor-pointer hover:bg-sky-700 transition-all delay-75 ">
Learn More
</a>
</div>
</section>
</div>
</body>
</html>