-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (66 loc) · 1.92 KB
/
index.html
File metadata and controls
78 lines (66 loc) · 1.92 KB
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
76
77
78
<!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="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | QR code component</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
body {
margin: 0;
font-family: 'Outfit', sans-serif;
font-weight: 400;
background-color: hsl(212, 45%, 89%);
color: hsl(220, 15%, 55%);
}
section {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
.f-container {
width: 200px;
padding: 10px;
border-radius: 10px;
display: block;
text-align: center;
background-color: white;
}
p {
margin-top: 12px;
line-height: 1.2;
}
.f-p {
font-size: 15px;
font-weight: 700;
color: hsl(218, 44%, 22%);
}
.s-p {
font-size: 12px;
}
</style>
</head>
<body>
<section>
<div class="f-container">
<img style="width: 200px; border-radius: 10px;" src="image-qr-code.png" alt="QR Code">
<p class="f-p">
Improve your front-end skills by building projects
</p>
<p class="s-p">
Scan the QR code to visit Frontend Mentor and take your coding skills to the next level
</p>
</div>
</section>
<footer>
<div class="attribution" style="display: block;">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/T-kesh" target="_blank">Keshinro Tanitoluwa Joseph</a>.
</div>
</footer>
</body>
</html>