diff --git a/curriculum/challenges/english/25-front-end-development/review-html-accessibility/671a87a39b88245a579c2271.md b/curriculum/challenges/english/25-front-end-development/review-html-accessibility/671a87a39b88245a579c2271.md index 10ff40a3aa9..21d136691ba 100644 --- a/curriculum/challenges/english/25-front-end-development/review-html-accessibility/671a87a39b88245a579c2271.md +++ b/curriculum/challenges/english/25-front-end-development/review-html-accessibility/671a87a39b88245a579c2271.md @@ -28,7 +28,7 @@ Review the concepts below to prepare for the upcoming quiz. ## Accessibility Best Practices - **Proper heading level structure**: You should use proper heading levels to create a logical structure for your content. This helps people using assistive technologies understand the content of your website. -- **Accessibility and Tables**: When using tables, you should use the `th` element to define header cells and the `td` element to define data cells. This helps people using assistive technologies understand the structure of the table. With the `caption` element, you can write the caption (or title) of a table, so users, especially those who use assistive technologies, can quickly understand the table's purpose and content. You should place the `caption` element immediately after the opening tag of the `table `element. This way, screen readers and other assistive technologies can provide more context by announcing the caption before reading the content. +- **Accessibility and Tables**: When using tables, you should use the `th` element to define header cells and the `td` element to define data cells. This helps people using assistive technologies understand the structure of the table. With the `caption` element, you can write the caption (or title) of a table, so users, especially those who use assistive technologies, can quickly understand the table's purpose and content. You should place the `caption` element immediately after the opening tag of the `table` element. This way, screen readers and other assistive technologies can provide more context by announcing the caption before reading the content. - **Importance for inputs to have an associated label**: You should use the `label` element to associate labels with form inputs. This helps people using assistive technologies understand the purpose of the input. - **Importance of good `alt` text**: You should use the `alt` attribute to provide a text alternative for images. This helps people using assistive technologies understand the content of the image. - **Importance of good link text**: You should use descriptive link text to help users understand the purpose of the link. This helps people using assistive technologies understand the purpose of the link.