Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Images

All images must include alt text. Be sure to follow these directions for each image you include on the page.

...

WCAG AA suggests that Headers only be placed in order. This means that when creating headers and sub headers do not skip from H1 to H3, they should be placed in sequence so that assistive devices or users do not think they have missed some content on the page.

Tables

Tables should include a Caption. You will need to use the Source Editor in order to add a caption to a table. This acts like a label on a form field to describe what is in the table.

...

just after the table tag add a caption line like the following

Code Block
<table class="wrapped">
	<caption>Data Table that shows Dates and Users</caption>
...</table>

Make only view-able by screen reader add the following classes to the caption tag.

Code Block
<table class="wrapped">
	<caption class="assistive sr-only">Data Table that shows Dates and Users</caption>
...</table>

...

.

Link Text

Be sure that if you are including a link that the link is not just labeled "here" or "click here." Link text should describe the link that it is associated with.

...