-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.html
More file actions
32 lines (32 loc) · 1.08 KB
/
responsive.html
File metadata and controls
32 lines (32 loc) · 1.08 KB
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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Responsive | Tailwindcss</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="flex h-screen justify-center items-center bg-gray-300">
<div
class="flex bg-white rounded-xl p-4 mx-auto max-w-md overflow-hidden md:shadow-lg md:max-w-2xl"
>
<div class="md:shrink-0">
<img
src="./image/building.jpg"
alt="Building Image"
class="w-60 h-48 object-cover md:h-full md:w-60"
/>
</div>
<div class="p-8">
<h2 class="text-blue-700 mb-2">Company retreats</h2>
<div class="font-semibold font-lg hover:underline mb-2">
Incredible accommodation for your team
</div>
<p class="text-gray-500 font-light">
Looking to take your team away on a retreat to enjoy awesome food and
take in some sunshine? We have a list of places to do just that.
</p>
</div>
</div>
</body>
</html>