Design comparison
Solution retrospective
All reviews are kindly welcomed
Thanks 😍
Community feedback
- @NaveenGumastePosted almost 3 years ago
Hay There ! Good Job on this challenge
These below mentioned tricks will help you remove any Accessibility Issues
-> Add
Main tag
after body like it should be your container-> For 1st heading or
h1
tag, useheader tag
and then inside the header put yourh1
orh2
etc-> But use header tag only once in main heading element.
-> Always use
h1
first and thenh2
,h3
and so onKeep up the good work!
1 - @OmarMAttia7Posted almost 3 years ago
Congratulations on finishing the challenge :). Your is code has some problems with HTML Markup and CSS:
- The main content of your document should be wrapped inside a
<main>
element or something equivalent, in this case it's preferable that you give itclass="container"
instead and delete the<div class="container">
you have as it has no use - The
alt
attribute of your images should have a meaningful description of the image for people who can't view it visually, you shouldn't leave them empty. - All HTML documents should have an
<h1>
element, in this case your Order Summary should be an<h1>
instead of an<h3>
, you can change the font-size with CSS. - The Proceed to payment and Cancel Order are user interactions so they should be appropriate semantic elements like
<button>
s or<a>
s to avoid accessibility issues. - You should use percentages and ems whenever possible instead of pixels because some users will scale the website to their own preference and you want it to look OK for them.
- The hero image should usually be added using CSS backgrounds instead of HTML
<img>
as it is there for decoration. - Finally your CSS could use some organization, consider commenting your css files and using a naming methodology like the BEM method. Good luck and keep coding <3.
1 - The main content of your document should be wrapped inside a
- @abhik-bPosted almost 3 years ago
👋 Hello Richmond , Your solution is very responsive & looks cool. I liked the descriptive HTML markup you wrote & I liked the transitions as well 🤩 I agree with all the above comments .
Well Done 🤩🤩🤩 Please Keep coding this amazing solutions & Happy Saraswati Puja ❤️
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