Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

QR code component page with CSS and HTML

AdrianoAfkβ€’ 30

@AdrianoAfk

Desktop design screenshot for the QR code component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


I had more difficulty with responsiveness, I couldn't make the text fit according to the screen. Any comments or tips for me to improve I would be very grateful

Community feedback

ANKIT KUMARβ€’ 210

@BABAR1532

Posted

I think you should add a margin to your lines according to your image. (Shrink it down your lines according to the image). [ I am also a newbie but it works for me]

0
Loai Esamβ€’ 670

@LoaiEsam37

Posted

Hi adrianoAFK,

(in line 21) inside index.html replace the <b> tag with <h1> tag because every page should contain level-one heading, also you can change the background-color of the page with this color #d5e1ef

hope you find this helpful

0
Abdul Khalid πŸš€β€’ 72,620

@0xabdulkhalid

Posted

Hello there πŸ‘‹. Congratulations on successfully completing the challenge! πŸŽ‰

  • I have other recommendations regarding your code that I believe will be of great interest to you.

HEADINGS ⚠️:

  • This solution has generated accessibility error report due to lack of level-one heading <h1>
  • Every site must want at least one h1 element identifying and describing the main content of the page.
  • An h1 heading provides an important navigation point for users of assistive technologies, allowing them to easily find the main content of the page.
  • So we want to add a level-one heading to improve accessibility by reading aloud the heading by screen readers, you can achieve this by adding a sr-only class to hide it from visual users (it will be useful for visually impaired users)

CSS 🎨:

  • The background-color you applied for body is not correct, instead try this,
body {
     background-color: #D6E1F0;
}

.

I hope you find this helpful πŸ˜„ Above all, the solution you submitted is great !

Happy coding!

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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