Engineering-Notes-Website
Engineering-Notes-Website copied to clipboard
[Bug]: 🔥🔥 Noticed 🐞 Almost All Html Files needs ARIA Attributes, title, target, rel for Social Links and Form Sections
GSSOC'23 Contributor
Issue Description:
- In almost html Files needs ARIA Attributes to Form Sections and Social Links
- For Social Icons, we can additionally needs to add title(Tooltip), target, rel attributes along with aria-label attribute
Purpose of Raising this Issue
- The
aria-label attribute
provides a way to place a descriptive text label on an object, such as a link, when there are no elements visible on the page that describe the object. If descriptive elements are visible on the page, the aria-labelledby attribute should be used instead of aria-label . - The
target attribute
inside anchor tags ( ) tells the browser where the linked document should be loaded. It's optional, and defaults to _self when no value is provided. - The
rel attribute
specifies the relationship between the current document and the linked document. Only used if the href attribute is present. - The
title attribute
gives users an important indication as to where they will be directed to when they click on a link. If the user hovers with the mouse over a link reference, the title text, which was defined in the attribute, will be displayed.
Hi @NageshMandal . Please look into this Issue.