chheangg / QR-code-component

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

Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.

To see how you can add code snippets, see below:

<div aria-label="qr-code" class="qr-container">
  <img class="qr-img" src="./images/image-qr-code.png" alt="qr code">
  <div class="info-container" aria-label="information">
    <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>

( VERY RESPONSIVE HAHAHA )

.qr-container {
  border-radius: 20px;
  max-width: 320px;
  background-color: hsl(0, 0%, 100%);
  padding: 1rem;
  margin: 0 auto;
}

Continued development

I hope to make my website more accessible and responsive without big sacrifices

About


Languages

Language:HTML 45.4%Language:JavaScript 28.3%Language:SCSS 26.3%