•HTML formatting tags are used to change how text is displayed
•These are container tags(we discussed about this in previous posts)
•Formatting tags are applied to text and are nested inside elements.
Examples 👇🏻
<b> </b> - This tag is used to bold text
<i> </i> - This displays text in italics
<u> </u> - This tag is used to underline a text
📎Web accessibility is all about making websites more inclusive and removing barriers.
📎Screen readers are programs that make the content of a web site accessible to users who visually impaired or have a learning disability.
These tags make your website more accessible 👇🏻
The < strong > < /strong > tag is used to highlight important texts (_same as <b> </b> tag)
_
The emphasis tag </em> < em > is used to define emphasized text. (same as <i> </i> tag)
🧩The above < strong > < /strong > and <em> < /em > tags are considered as semantic tags. Which means, they have a meaning & can be read by the screen readers, so that your web page becomes more accessible
Top comments (0)