Latest solutions
( Updated ) SASS/SCSS - BEM - JS - GulpJs - Accessibility
#accessibility#sass/scss#gulpSubmitted over 2 years ago
Latest comments
- @BenScattergood@Devibtissam
well done, you can add alt attribute to the img elements to fix your report issues shown above.
- @kikin-mentor@Devibtissam
Hi! it's important to be aware of HTML semantic structure, your page should at least have on heading level, apart from that you did a great job, keep up
- @romila2003@Devibtissam
Hi,
- in addition to what Florent mentioned, try to find a way to remove all the styles of errors occurred when the user starts again typing, you can do that by using the event keypress and loop throughout the input fields.
- it's important the be aware of HTML semantic structure, each section article .. should have at least one heading level, and all heading levels should be increased only by one.
hope this helps!
Marked as helpful - @Alejandro-Fernandez-Macias@Devibtissam
Hi,
- It's important to be aware of HTML semantic structure, you cannot skip heading level like this, and your page should at least contains one-level heading h1, and all headings level should be increased by one, h1 then h2, h3, and so on ...
- a part that you did well on this challenge, keep up
Marked as helpful - @KorsanDev@Devibtissam
Hi, well done on this challenge
- Heading levels should only increase by one, you can not put h1 and then h3 , you should use h2 instead hope this helps :))
- @BlakkyWeb
page layout using css flex, form validation and responsiveness active
#bootstrap#tailwind-css#theme-ui#django@Devibtissamhey, good job on this challenge!
- wrap everything in your body in <main> OR use semantic tags! if you're using div right after body, then give them a role=" "; however, it's a little frowned upon to use role right after body, so try to stick with semantic tags instead.
- your page should at least contains one-level heading h1
- input attribute should not be empty, you could remove them if you don't want to fill them hope this helps you to fix the issues shown above in your report!