3.1 Designing for Accessibility

Consider library shelving. This is a technological solution to arranging large numbers of books. There is a design decision taken to make the shelves a certain height, to make the aisles a certain width. Consider a person in a wheelchair, who cannot reach the higher shelves, or whose chair cannot navigate the aisles: it is not their condition that makes the library inaccessible. It is the design choices and assumptions about ‘ideal users’ that creates the disability.

Similarly, our design choices in digital media do the work of disempowering or disabling our potential users, audiences, researchers.

It does no good to build a website to communicate the compelling story, but neglect significant portions of one’s audience through design choices that exclude. As scholars participating in the digital humanities, there is a rhetoric surrounding the use of ‘open access’ resources that sometimes does not lie congruent with the needs of accessibility. We make sources, code, images, software, and many more resources open. Open access and open source are part and parcel of our lexicon. We create websites and digital tools to democratize the pedagogical landscape. However, we may not be aware of the different ways people access digital content. Merely making material available online - however well intentioned - is not sufficient to democratize learning or to give actual access. What happens if someone who uses a screen reader cannot navigate your website because you do not have proper headers? Or if the contrast between your text and background is too low for someone to read?

Digital archaeologists should be considering accessibility and universal design from the beginning and not after the fact.

Fortunately, many open source platforms (eg. GitBook) are accessible out of the box, or need minor adjustments to meet various accessibility standards. Generally, you only need to make a few changes to the underlying HTML, CSS, and JavaScript to meet accessiblility guidelines. In this section, we will provide several resources, guidelines, and tips to make your digital project more accessible.

To familiarize yourself with accessible web design, review the W3 Web Content Accessibility Guidelines (WCAG). You should aim to meet these guidelines, if not exceed them with your digital project.

The a11y project is another great resource for accessibility tips, common myths, and an overview of different accessibility concerns.

KhanAcademy has an open source tool called Tota11y, essential for anyone creating an accessible website. When you code the footer of your webpage, you add this line of code:

<script src="tota11y.min.js"></script>

and make sure that the file tota11y.min.js is in the same directory as your html. When you then serve your website, a button will appear containing tools to help test your website for different accessiblity issues, including text contrast, proper headings, appropriate use of labels, link and alt-text, etc. You can serve your website either by moving all of your files to a webserver or by starting a server on your computer. If you have python installed you can start it from your terminal, making sure you’re in the directory with your index.html file, with python -m SimpleHTTPServer 8000 and then putting localhost:8000 in your browser’s address bar.

3.1.1 Screen Readers, Text Browsers, HTML Labels, and Headings

Before you begin making your website more accessible, download or use your computer’s native screen reader. A screen reader is a program a user controls with their keyboard, that reads aloud the text on a computer screen. On Mac OS, hit Cmd + Option + F5 to open the native screen reader; Windows has an app called Narrator. When you use a screen reader, you begin to understand how the underlying code is read (quite literally) by a computer.

A text browser is another essential tool to understand the ways people will use your website. Download Lynxlet (Mac) or Links (Windows) and access your website to understand how it appears as a text only website.

Screen readers and text browsers show why it is important to add labels to all hyperlinks, media, and interactive items on your website. For instance, if your webpage has an image without any alternate text, you risk someone missing out on important content that is otherwise only visually available. Screen readers, specifically, use ARIA (Accessible Rich Internet Applications) labels to parse the information on a screen. ARIA labels are added to HTML elements to describe the purpose of an element to screen readers. Review WCAG’s page on ARIA.

Screen readers and text browsers also help us understand why to use appropriate descending and ascending HTML headers to break apart text. Headers that follow a logical progression allow screen readers to understand the different levels of content on your webpage. For example, an <h1> element should be followed by an <h2> element and not an <h3> or <h4>. Header progression also helps users visually understand the way content is divided on your webpage.

3.1.2 Contrast and Styles

It is important to ensure all text on your web page is easy to read and exceeds a contrast ratio of 4.5:1. Fortunately, Tota11y provides a suggestion of a hex colour value which you can use in your CSS file. WebAIM also has a contrast checker tool you can use to make stylistic choices accessible.

3.1.3 Font

Your font choice also effects the way users interact with your website. Certain fonts are easier to read than others. Broadly speaking, sans-serif fonts are easier to read than serif fonts in the sense that the Open Sans font is generally easier to read than the Lobster font. However, this does not mean you should dispose of serif fonts. It is best to understand which font works for your content and your users. There are a variety of fonts you can use - Dyslexie, for instance, is a font designed specifically to help people with dyslexia read. Review WebAIM’s article on fonts and then use Typeconnection and Google Fonts to decide which fonts you want to add to your website.

3.1.4 Going Forward

This section is far from an exhaustive resource on accessible design and more a jumping off point to help you understand the myriad design considerations and ways people access our projects. Accessibility does not end with making everything open, but begins.

Accessible design should not limit your digital project - you do not need to sacrifice stylistic choices for accessibility. Rather, accessible design teaches us to consider that everyone approaches digital content differently. Accessibility pushes us not to design constrained, but to design better.

3.1.5 Exercises

  1. Google’s Chrome browser now ships with an accessibility audit built in. Using Chrome, go to the website for a public archaeology project of interest. Right-click on the webpage and select inspector. Across the tool-bar that appears, select audits.
The audits toolbar in Chrome Inspector

The audits toolbar in Chrome Inspector

Uncheck everything except for accessibility then scroll down and hit the blue run audits button. Chrome will test the page under a variety of conditions (including simulating serving it to a mobile device). The results will look like this:

Results of an accessibility audit via Chrome.

What are the issues with your chosen site? What ought its maintainers do to improve the accessibility of the site? Can you work out which issues result from design choices and which issues emerge from choice of platform? Are some platforms more amenable to accessibility than others? Research the company/group who makes the platform. Do you see any issues there that might have an impact on accessibility?

3.1.6 Further Reading

An introduction to Universal Design in the context of the Digital Humanities is provided by Williams (2012). For more on inclusive archaeology in general, see the Enabled Archaeology Foundation. For a particular case study, see O’Mahoney (2016) (which may be downloaded from Figshare.

References

Williams, George. 2012. “Disability, Universal Design, and the Digital Humanities.” In Debates in the Digital Humanities. The Graduate Center City University of New York. http://dhdebates.gc.cuny.edu/debates/text/44.

O’Mahoney, Theresa. 2016. “Empowering Archaeology What Model of Disability Do People with Dyslexia in University Archaeology Courses Experience?” Institute of Archaeology, University College London.