Logo
Published on

Creating a QR Code Card Component using HTML, CSS, and Javascript

Authors

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

A component of a QR Code Form

Screenshot

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox

What I learned

  • I learned Semantic Html.
  • :memo: Note: Flexbox using display: flex;
    • align-items/align-self : flex-start, flex-end, center, baseline, stretch
    • order of an item
    • justify-content : flex-start (default), flex-end, center, space-between, space-around, space-evenly
    • flex-direction : row (default), row-reverse, column, column-reverse
    • flex-wrap : nowrap, wrap, wrap-reverse
    • flex-row : <flex-direction> <flex-wrap>
    • align-content to set how multiple lines are spaced apart from each other. : flex-start, flex-end, center, space-between, space-around, stretch

Continued development

:bulb: Animation for the component

Useful resources

Author