-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
20 lines (20 loc) · 863 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!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>TailwindCss Starter Pack</title>
<link rel="shortcut icon" type="image/png" href="./src/images/logo.png" />
<link rel="stylesheet" href="./src/css/default/tailwind.css">
</head>
<body>
<div class="bg-gradient-to-r from-green-400 to-blue-500 flex justify-center items-center h-screen ">
<div class="animate-bounce text-center font-mono font-bold text-white text-sm sm:text-xl md:text-3xl ">
<img class="m-auto block rounded-full animate-spin" src="./src/images/logo.png" alt="">
<h1>Welcome To</h1>
<h5> Tailwind Css Starter Pack</h5>
</div>
</div>
</body>
</html>