izzuzantyaf / qr-code

QR code component challenge from Frontend Mentor

Home Page:https://izzuzantyaf.github.io/qr-code

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

Overview

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • Mobile-first workflow

What I learned

  <main class="container">
    <article class="qr-code-card bg-white">
      <img src="images/image-qr-code.png" alt="qr code image" class="qr-code" width="295px"/>
      <h1 class="title font-bold text-dark-blue">Improve your front-end skills by building projects</h1>
      <p class="description text-grayish-blue font-regular">Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p>
    </article>
  </main>
:root {
  --light-gray: hsl(212, 45%, 89%);
  --dark-blue: hsl(218, 44%, 22%);
  --grayish-blue: hsl(220, 15%, 55%);
  --white: hsl(0, 0%, 100%);
}

Author

About

QR code component challenge from Frontend Mentor

https://izzuzantyaf.github.io/qr-code


Languages

Language:HTML 50.5%Language:CSS 49.5%