-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 888 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css" rel="stylesheet"/>
</head>
<body>
<div class="container max-w-sm mx-auto bg-white rounded-xl shadow-2xl overflow-hidden md:max-w-md mt-[320px]">
<div class="image flex items-end justify-end h-56 w-full bg-cover" style="background-image: url(https://picsum.photos/800/600?random=1)">
</div>
<i class="icon ri-heart-3-fill"></i>
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Random Picture</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>