-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (47 loc) · 1.69 KB
/
index.html
File metadata and controls
50 lines (47 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="description" content="Frontend Mentor - QR code component" />
<meta name="keywords" content="HTML, CSS, JavaScript" />
<meta name="author" content="Rebecca Padgett" />
<meta charset="UTF-8" />
<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" />
<title>Frontend Mentor | QR code component</title>
<!-- google font -->
<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:[email protected]&display=swap" rel="stylesheet" />
<!-- css -->
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<main class="qr__code">
<h1 class="visually-hidden">Frontend Mentor | QR code component</h1>
<figure class="qr__code-banner">
<img src="./assets/images/image-qr-code.png" width="576" height="576" alt="qr code to frontendmentor.io" />
<figcaption class="visually-hidden">
Scan the qr code to go to Frontend Mentor website
</figcaption>
</figure>
<article class="qr__code-content">
<h2>
Improve your front-end skills by building projects
</h2>
<p>
Scan the QR code to visit Frontend Mentor and take your coding skills
to the next level
</p>
</article>
</main>
<footer class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">
Frontend Mentor
</a>
. Coded by
<a href="#">Rebecca Padgett</a>
.
</footer>
</body>
</html>