-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.29 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
<!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" />
<link rel="stylesheet" href="build/style.css" />
<title>Tailwind</title>
</head>
<body class="bg-gray-100">
<div class="w-20 pt-4 pl-4 mx-auto block">
<img src="images/logo.png" alt="" />
</div>
<img
class="mx-auto mt-4 rounded-lg shadow-lg"
src="images/image.jpeg"
alt=""
/>
<h1 class="text-2xl font-bold text-gray-700 text-center mt-4">
You can work for anywhere. <br /><span class="text-blue-500"
>Take the advantage of it.</span
>
</h1>
<p class="text-center w-80 mx-auto text-sm text-gray-500 mt-2">
quidem harum delectus enim perferendis necessitatibus incidunt facere
placeat ipsa ab ipsum alias repudiandae doloremque, saepe vitae. Fugit
consectetur amet enim !
</p>
<div class="text-center">
<a
class="
bg-blue-600
text-white
py-3
px-3
uppercase
font-semibold
inline-block
rounded-lg
mt-2
shadow-lg
"
href="#"
>Book Now</a
>
</div>
</body>
</html>