-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (43 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Frontend Mentor | QR code component</title>
<meta name="author" content="Alberto Raúl José">
<meta name="title" content="Frontend Mentor | QR code component">
<meta name="description" content="Frontend mentor challenge solution for: QR code component">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<!-- font sans-serif -->
<link rel="stylesheet" href="assets/fonts/Outfit.woff2" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="page">
<main class="main-content">
<!-- card -->
<div class="card">
<img
class="card__thumb"
alt="QR code pointer to Frontend Mentor"
src="assets/images/image-qr-code.png"
width="280"
height="280"
/>
<h1 class="card__title">
Improve your front-end skills by building projects
</h1>
<p class="card__description">
Scan the QR code to visit Frontend Mentor and take
your coding skills to the next level
</p>
</div>
</main>
<!-- attribution -->
<footer class="attribution">
<p>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/alberto-rj" target="_blank">Alberto Raúl José</a>.
</p>
</footer>
</body>
</html>