Latest solutions
/intro-section-with-dropdown-navigation using html, CSS and JavaScript
#accessibilitySubmitted about 3 years ago
Latest comments
- @AbdullahAjayi@JesseOlisa
Hello Abdullah,
Well done on completing this challenge. It looks good. Keep it up👏.
To fix your accessibility issue, wrap your divs inside landmarks. Landmarks help assistive technology users to navigate your page easily.
Landmark includes a header, main, footer tags, and more. So wrap your div.container inside the main tag to resolve it. I hope this helps. Cheers
Marked as helpful - @Mohamedaly77@JesseOlisa
Hello Mohamed Aly,
Well done on completing this challenge. It looks good. Keep it up👏.
To fix your accessibility issue, wrap your divs inside landmarks. Landmarks help assistive technology users to navigate your page easily.
Landmark includes a header, main, footer tags, and more. So wrap your div.parent inside a main tag I hope this helps. Cheers
- @ngocdong99@JesseOlisa
Hello Trịnh Ngọc Đông, Well done on completing this challenge. It looks good. Keep it up👏.
To fix your accessibility issue, wrap your divs inside landmarks. Landmarks help assistive technology users to navigate your page easily.
Landmark includes a header, main, footer tags, and more. So wrap your div.main inside the main tag and div.attribution inside footer tag to resolve it I hope this helps. Cheers
- @isismd@JesseOlisa
Hello @Isis,
Well Done completing this code. You did an amazing job on this challenge. Keep it up 👍
I went through your code and I will like to point out the main picture issue. There is no need to set the height of your image at every media query screen.
My suggestion to making the main picture responsive, and you can do this by adding a display: block and min-width: 100% to the illustration id; With this, the image will always adjust to the width of it's container no matter the screen size.
I hope this helps😊. Again, Well done.
Marked as helpful - @mdanieladla@JesseOlisa
Hi Daniela :)
Great Job on completing this project. I should probably pick up a lesson or two about code organization from you because your code is well organized and easy to scan through. Well Done. :)
However, the spacing issue is as a result of an overflow from the height of your html. To fix it, change the height to min-height.
This is way the height of your html will keep adjusting even as a your add more content.
I hope this helps. Cheers :)
Marked as helpful - @jaucau1@JesseOlisa
Hello @jaaljoodi,
Well done on completing this challenge. I went through your code and I must say it is neatly written and very easy to go through. Keep it up.
However, I will like to point out the code repetition regarding your button element. A class of "btn" was created in your CSS file but you didn't assign it to any button element in your html. This could have saved you from re-writing properties such as border, border-radius and others which are similar across the buttons.
So assign the "btn" class to your buttons and only add the necessary codes to your primary and secondary buttons.
Also, you can use the min-width property to stretch your primary button across your container.
Again, Well done and keep it.
Marked as helpful