58 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!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">
 | 
						|
 | 
						|
  <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:wght@400;700&display=swap" rel="stylesheet">
 | 
						|
 | 
						|
  <link rel="stylesheet" href="css/style.css">
 | 
						|
 | 
						|
  <title>Frontend Mentor | QR code component</title>
 | 
						|
 | 
						|
  <!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
 | 
						|
  <style>
 | 
						|
    .attribution {
 | 
						|
      font-size: 11px;
 | 
						|
      text-align: center;
 | 
						|
    }
 | 
						|
 | 
						|
    .attribution a {
 | 
						|
      color: hsl(228, 45%, 44%);
 | 
						|
    }
 | 
						|
  </style>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
  <main>
 | 
						|
    <section class="qr-card">
 | 
						|
      <picture>
 | 
						|
        <img class="qr-card__img" src="images/image-qr-code.png" alt="QR Code">
 | 
						|
      </picture>
 | 
						|
      <h1 class="qr-card__heading">
 | 
						|
        Improve your front-end skills by building projects
 | 
						|
      </h1>
 | 
						|
      <p class="qr-card__body">
 | 
						|
        Scan the QR code to visit Frontend Mentor and take your coding skills to the next level
 | 
						|
      </p>
 | 
						|
 | 
						|
    </section>
 | 
						|
  </main>
 | 
						|
 | 
						|
 | 
						|
  <!-- <footer>
 | 
						|
    <div class="attribution">
 | 
						|
      Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
 | 
						|
      Coded by <a href="#">Your Name Here</a>.
 | 
						|
    </div>
 | 
						|
  </footer> -->
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |