-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (74 loc) · 1.75 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
70
71
72
73
74
75
<!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="icon" href="./favicon-32x32.png" type="image/x-icon" />
<link
href="https://fonts.googleapis.com/css2?family=Outfit&display=swap"
rel="stylesheet"
/>
<title>QR Code Card</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #d5e1ef;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
div {
width: 320px;
background-color: #ffffff;
border-radius: 20px;
overflow: hidden;
padding: 16px;
font-family: "Outfit";
font-style: normal;
font-weight: 400;
font-size: 15px;
line-height: 19px;
text-align: center;
}
img {
display: block;
max-width: 100%;
border-radius: 10px;
}
h1 {
font-family: "Outfit";
font-style: normal;
font-weight: 700;
font-size: 22px;
line-height: 28px;
text-align: center;
color: #1f314f;
margin: 16px 0 24px 0;
}
p {
color: #7d889e;
letter-spacing: 0.1875px;
margin: 0 16px 24px 16px;
}
</style>
</head>
<body>
<div>
<img src="image-qr-code.png" />
<h1>
Improve your front-end <br />
skills by building projects
</h1>
<p>
Scan the QR code to visit Frontend Mentor and take your coding skills to
the next level
</p>
</div>
</body>
</html>