-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (24 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="dist/style.css">
<title>Card</title>
</head>
<main>
<body class="bg-light-gray">
<div class="w-full min-h-screen flex justify-center items-center ">
<!-- CARD -->
<div class="h-300 w-100 rounded-[2vmin] bg-white align-center p-4 pt-4 ">
<img src="images/image-qr-code.png" alt="image of the qr code" class="rounded-[1vmin] h-100 w-80 justify-center mx-auto" ></img>
<div>
<h1 class="font-outfit font-bold text-2xl text-center pt-5">Improve your front-end <br>skills by building projects</h1>
<p class="font-outfit font-normal text-center pt-4 pb-4 text-grayish-blue">Scan the QR code to visit Frontend <br> Mentor and take your coding skills to <br> the next level</p>
</div>
</div>
</div>
</main>
</body>
</html>