DEV Community

Discussion on: I Got a Perfect Lighthouse Score on My First Portfolio Website!

Collapse
 
supportic profile image
Supportic

You could improve on accessibility what lighthouse could not catch.
e.g. your menu toggle button is not toggeling aria-expanded
or you have tabindex=0 on a div around your logo link. The link itself has by default tabindex=0. Use p (block) or span (inline) tags for text elements.

Collapse
 
prnvbirajdar profile image
Pranav Birajdar

Thank you for the feedback. I totally forgot about the menu toggle accessibility. Nice catch!