-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 980 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 980 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<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>QR Code Component | Frontend Mentor</title>
<!-- Styles -->
<!-- <link rel="stylesheet" href="./assets/styles/styles.css"> -->
</head>
<body>
<main>
<article class="card">
<img class="card__img" src="./assets/images/image-qr-code.png" width="288" height="288" alt="QR code" />
<div class="card__content">
<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>
</article>
</main>
</body>
</html>