forked from tailwindlabs/tailwindcss-from-zero-to-production
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.19 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
<!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>Document</title>
<link rel="stylesheet" href="/css/tailwind.css" />
</head>
<body class="bg-gray-100">
<div class="px-8 py-12">
<img class="h-10" src="/img/logo.svg" alt="Workcation" />
<img
class="mt-6 rounded-lg shadow-xl"
src="/img/beach-work.jpg"
alt="Woman workcationing on the beach"
/>
<h1 class="mt-6 text-2xl font-bold text-gray-900">
You can work from anywhere.
<span class="text-indigo-500">Take advantage of it.</span>
</h1>
<p class="mt-2 text-gray-600">
Workcation helps you find work-friendly rentals in beautiful locations so you can enjoy some
nice weather even when you're not on vacation.
</p>
<div class="mt-4">
<a
class="inline-block px-5 py-3 rounded-lg shadow-lg bg-indigo-500 text-white uppercase tracking-wider font-semibold text-sm"
href="#"
>
Book your escape
</a>
</div>
</div>
</body>
</html>