-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (59 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="qrcodecard.css">
<title>QRCARD</title>
</head>
<style type="text/css">
*{ margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: hsl(212, 45%, 89%);
}
.card{
box-shadow: 0 4px 8px 0;
max-width: 350px;
height: 480px;
text-align: center;
background-color: hsl(0, 0%, 100%) ;
border-radius: 15px;
position: absolute; left: 50%;top: 50%;
transform: translate(-50%,-50%);
font-size: 15px;
padding: 5px;
}
.card > img{
width: 300px;
padding: 7px;
margin: 0px;
border-radius: 25px;
}
h2{
font-family: 'Outfit', sans-serif;
font-weight: 700;
color: hsl(218, 44%, 22%);
padding: 10px;
}
p{
font-size: 15px;
font-family: 'Outfit', sans-serif;
font-weight: 400;
color: hsl(220, 15%, 55%);
padding: 10px;
}
</style>
<body>
<div class="card">
<img src="image-qr-code.png" alt="QR CODE">
<h2>Improve your front-end <br>skills by building projects</h2>
<p>Scan the QR code to visit Frontend<br> Mentor and take your coding skills to<br> the next level</p>
</div>
</body>
</html>