
QR-Code-component using semantic HTML and Basic CSS
Design comparison
Solution retrospective
I am most proud of the fact that I was able to successfully completed the project with the meagre skills at my disposal.
Next time, I would be more efficient with the styling techniques I used because by then I would have improved my skills further.
Community feedback
- @AlejandroIMPPosted 2 months ago
Great job!
I have some suggestion for you:
Incorrect Heading Usage:
- The
<h1>
tag is being used incorrectly. It should not wrap a<p>
tag. Instead, the text inside<p id="one">
should be directly inside the<h1>
tag. - Example:
<h1>Improve your front-end <br/> skills by building projects</h1>
Unnecessary
<br/>
Tags:- Using
<br/>
for line breaks is not ideal for responsive design. Consider using CSS (e.g.,margin
orpadding
) to control spacing. - Example:
<p id="one">Improve your front-end skills by building projects</p> <p id="two">Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p>
Overall, the code is well-structured and functional, but with a few tweaks, it can be more semantically correct and accessible.
Hope you find this helpful
Marked as helpful1 - The
- P@kaamiikPosted about 2 months ago
Some notes:
- alt message: Read this article and It really helps: How to Write Good Alt Text
- About headings: You should have one
h1
in your page but this is not a page and It is a card. So remember in a real scenario you are not usingh1
here. Also read this: Heading Order Guide
- Line break: Avoid using
<br>
to wrap text; instead, usemax-width
and let the browser handle text wrapping.
- Modern CSS reset: It's recommended to use a proper CSS reset at the beginning of your styles. Both Andy Bell and Josh Comeau provide excellent CSS resets, which you can easily find online.
- min-height: Use
min-height: 100vh;
instead ofheight: 100vh;
to prevent overflow issues.
- Do not limit text container: Avoid setting fixed
width
andheight
for elements containing text. Instead, usemax-width
for better adaptability. In your code,width: 290px;
andheight: fit-content;
are wrong and should replace withmax-width
.
- No need for fixed positioning: Use flexbox to stick your footer to the bottom. Fixed positioning here is a bad practice.
Marked as helpful0@Donnish233Posted about 2 months ago@kaamiik Thank you for your feedback. I'll make sure to work on it.
However, as regards to the seventh point you made, which is "No need for fixed positioning", could you better explain the steps I should follow to achieve the desired result?, because I'm relatively new to all this coding and stuff.
0P@kaamiikPosted about 2 months ago@Donnish233 As I see you added the fixed positioning to stick your footer at the bottom of the page. This is not a good approach here to use fixed positioning. Try to learn this with flexbox or grid. After your
body
you havemain
andfooter
as a direct child. One of them needs to grow and one not. Try to learn how to work withflex: 1;
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord