Latest solutions
Latest comments
- @staceysav@livvyvi3
Hi Stacey Good way to go. You may look more into CSS grids so you may apply media queries. The CSS grid is a newer standard that makes it easy to build complex responsive layouts. It works by turning an HTML element into a grid, and lets you place child elements anywhere within. The you may use media queries to control responsive component layouts for the website.
Marked as helpful - @SriVishwa-S@livvyvi3
Hi good attempt you can add the alt attribute, on standard it can be a short description of the image in this case the QR image, in the case that the image is not displaying the user can see which image could have been rendered.
<img src="images/image-qr-code.png" alt="QR-image"/> </div>
You can add the font link as an import in styles.css
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap" rel="stylesheet">
You can remove the tag
<div class="page">
and add the css declarations of the class selector
Marked as helpful