-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 912 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 912 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="src/css/style.css" />
<title>QR Code Challenge</title>
</head>
<body>
<section
class="bg-lightGrey w-screen h-screen flex items-center justify-center px-5 md:px-0"
>
<div
class="max-w-72 bg-white flex flex-col justify-center items-center text-center rounded-2xl p-3 pb-10"
>
<img src="src/imgs/image-qr-code.png" class="rounded-xl mb-5" alt="" />
<h1 class="font-bold max-w-52 mb-3">
Improve your front-end skills by building projects
</h1>
<p class="text-xs max-w-52 text-grey">
Scan the QR code to visit Frontend Mentor and take your coding skills
to the next level
</p>
</div>
</section>
</body>
</html>