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.
Using HTML5 and CSS, I created a QR code page that displays the QR code that leads to FrontEnd Mentor. As a newbie project, this is perfect as it uses simple HTML and CSS. It allowed me to understand what every specific custom CSS property did and it help reinforce the use of both HTML and CSS.
- Live Site URL: Add live site URL here
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
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.
:root {
--white: hsl(0,0,0); /*Sets universal variables*/
}
body{
display: flex; /*Centers the container to the page from here down to height*/
flex-direction: column;
align-items: center;
justify-content: center;
height: calc(100vh - 1px);
}
Still not the best at CSS and flexbox. Need to understand the concepts of CSS and practically applying it
- Website - Edmond Wu
- Frontend Mentor - @edmondwu9
Note: Delete this note and add/remove/edit lines above based on what links you'd like to share.