Latest solutions
Latest comments
- @Heidelol@lubnafathima
Hey! first of all, congrats on completing your first challenge :D In CSS, you could use :hover selector for attaining active state (refer this example from w3school) https://www.w3schools.com/cssref/sel_hover.asp
As far as you accessibility warnings:
- make sure you add HTML lang attribute add: <html lang="en">
- instead of using <div class="maincontainer"> native HTML5 landmark elements like main in place of div refer https://dequeuniversity.com/rules/axe/4.3/region?application=axeAPI I guess you are good to go now, Good luck!!!