-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (31 loc) · 1.38 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
37
38
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:[email protected]&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link href="./css/style.css" rel="stylesheet">
<title>Frontend Mentor | QR code component</title>
</head>
<body>
<!-- Background Container -->
<div class="flex items-center justify-center bg-slate-300 h-screen">
<!-- Inner Container -->
<div class="flex flex-col bg-white rounded-2xl p-4 pb-10 space-y-6 shadow-sm items-center w-80">
<img src="./images/image-qr-code.png" alt="qr-code" class="rounded-xl w-72 h-72">
<!-- Text Container -->
<div class="flex flex-col space-y-4 pl-4 pr-4 content-center">
<p class="text-title justify-center text-center">
Improve your front-end skills by building projects
</p>
<p class="text-subtitle justify-center text-center">
Scan the QR code to visit Frontend Mentor and take your coding skills to the next level
</p>
</div>
</div>
</div>
</body>
</html>