-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (23 loc) · 1.05 KB
/
index.html
File metadata and controls
30 lines (23 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | QR code component</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<main>
<article class="h-screen w-full bg-slate-200 flex justify-center items-center p-10">
<div class="flex flex-col bg-white p-6 gap-8 rounded-2xl justify-center items-center w-[400px]">
<img src="./images/image-qr-code.png" alt="qr-code" class="rounded-2xl">
<div class="px-1 flex flex-col gap-6 pb-4">
<p class="text-2xl font-bold text-center">Improve your front-end skills by building projects</p>
<p class="text-md text-center text-gray-400">Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p>
</div>
</div>
</article>
</main>
</body>
</html>