Acronyms & Abbreviations
Be sure to refer to the university’s Writer’s Style Guide to learn recommended use of acronyms and abbreviations. If you are going to include an acronym or abbreviation on your site you must edit the HTML. Toggle your content management system to the code view then follow this example:
Example: The <abbr title=”World Health Organization”>WHO</abbr> was founded in 1948.
This will ensure that the acronym or abbreviation is presented appropriately and as expected on all devices, including screen readers, an assistive technology that reads the website out loud. An added benefit is that a tool tip, similar to a hover over or pop-up, is presented in common browsers to visual users who may have forgotten what the acronym or abbreviation stands for. Also, search engines, like Google, will rank the words of the acronym or abbreviation in search results.
Tables
If you need a tabular data table please contact the Web team. Tables that are not coded properly may not be accessible to visitors using assistive technology. If you really feel like trying to tackle this on your own, Please read up on coding accessible tables on Web AIM.
Please refrain from using table HTML code for laying out content into multiple columns.
Foreign Language
If you need to include content in a foreign language on your website, wrapping that content in a special HTML lang tag is necessary to inform both the internet browser and screen readers that the content is to be read and interpreted as a language other than English.
Optionally, it’s common to visually indicate foreign words by making them italic. However, this is not the same as emphasizing. Learn how italic is different than the more common emphasis HTML tag.
Examples of properly labeled foreign language content
As a paragraph: <p lang = “fr”><i>”Je n’aime pas les hommes ; j’aime ce qui les dévore” (André Gide, Le prométhée mal enchaîné)</i></p>
Within a paragraph: <p>French writer André Gide once said <span lang = “fr”><i>“Je n’aime pas les hommes ; j’aime ce qui les dévore”</i></span></p>
Here is a list of all available language codes.
Forms
We recommend using Qualtrics and linking your site to it. Contact the Web Team if you would like to include a form on your site, such as a survey or a contact form. It is very important forms can be submitted by all visitors.
Visit our instruction page for more information about Qualtrics form accessibility and a link to our Qualtrics accessibility checklist.
Plugins for Downloads
If you include content on your website that requires software or a plugin be installed on your visitors computer you must provide a link to download the software or plugin. For example, you must including a link to the Adobe Acrobat Reader wherever a PDF is present in your website. The PDF itself must also be accessible.
Example: Download Acrobat Reader to access this document.
The link should include the ending slash ( http://get.adobe.com/reader/ )
Scripts and Embed Codes
An embed code, sometimes called a short code, is an HTML snippet that renders external content on your website. One of the most commonly used embed codes allows a YouTube video to display on your website. FaceBook, Twitter and AddThis also provide embeddable code to allow you to render their content on your website.
Most of these utilize a <script> or an <iFrame> HTML tag.
iFrames always require a title attribute.
title=”description of the content in the iframe”
The title attribute serves a similar purpose as Alternate Text does for an image.
YouTube Example:
<iframe title="One to two sentence description of the video" width="560" height="315" src="//www.youtube-nocookie.com/embed/WL1GMBbz9OM" frameborder="0" allowfullscreen></iframe>
Unfortunately, most of the embed codes are not accessible to users who access our websites with assistive technology. Fortunately there’s a fix for the Twitter color contrast. If you would like to embed something on your site, please contact the Web team.