33 lines
858 B
HTML
33 lines
858 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<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="./images/favicon-32x32.png"
|
||
|
/>
|
||
|
<title>Frontend Mentor | QR code component</title>
|
||
|
<link rel="stylesheet" href="style.css" />
|
||
|
<link
|
||
|
href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap"
|
||
|
rel="stylesheet"
|
||
|
/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<div class="card">
|
||
|
<img src="images/image-qr-code.png" />
|
||
|
|
||
|
<h1>Improve your front-end 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>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|