itzzmerov / qrcode-frontendMentor

This is the first challenge I got from the frontendmentor.io website. This is a QR Code component.

Home Page:https://itzzmerov.github.io/qrcode-frontendMentor/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Frontend Mentor - QR code component solution

This is a solution to the QR code component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • Media Query
  • Google Fonts

What I learned

In this challenge, I remember how hard the basics is. Even if it was just a fundamentals or basic syntax, it is really important to remember it all because sometimes, it might get hard for you to solve a problem just because you can't remember the right syntax of line of coded needed.

<div class="container">
    <div class="wrapper">
      <div class="qrcode-holder">
        <img src="images/image-qr-code.png" alt="QR code">
        <div class="text">
          <h1>Improve your front-end skills by building projects</h1>
          <h3>Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</h3>
        </div>
      </div>
    </div>
  </div>
:root {
      --white: hsl(0, 0%, 100%);
      --light-gray: hsl(212, 45%, 89%);
      --grayish-blue: hsl(220, 15%, 55%);
      --dark-blue: hsl(218, 44%, 22%);
      --outfit: 'Outfit', sans-serif;
    }

If you want more help with writing markdown, we'd recommend checking out The Markdown Guide to learn more.

Author

Acknowledgments

I just want to thank Coder Coder from YT for recommending this Frontend Mentor as a source of front-end web development ideas.

About

This is the first challenge I got from the frontendmentor.io website. This is a QR Code component.

https://itzzmerov.github.io/qrcode-frontendMentor/


Languages

Language:HTML 100.0%