Many PowerPoint presentations contain text art, boxes, arrows, and other drawing objects. Each of these items on the slide needs to have a textual, accessible equivalent in the HTML version of the slide.
From the sample "Human-Computer Interaction" presentation, the original PowerPoint slide 8 (see Image 29 ).
<!-- Slide 8 -->
<img src="Slide8.jpg" alt="Slide 8">
<H1>Assignments</H1>
Now provide the HTML for the content of the slide. The major difficulty with creating a textual equivalent of this slide is that the diagram represented by all of the drawing shapes is a bit complex. You have a directed graph with a cycle that shows how the students should tackle their assignments. You must come up with a unique solution to provide an accessible, textual equivalent for the diagram and/or drawing objects on the slide.
In this example, you can use a paragraph explaining the slide's intention as shown in the following HTML.
<!-- Slide 8 -->
<img src="Slide8.jpg" alt="Slide 8">
<H1>Assignments</H1>
<p>
The process of doing assignments in this class works like
the following process:
</p>
<ol>
<li>Skim the material before coming to class</li>
<li>We will discuss the material in class</li>
<li>After class, do another, in-depth reading</li>
<li>Write an essay on the material</li>
<li>We will then discuss the "best" essays</li>
<li>At the end of the term, your final exam tests your
knowledge of these "best" essays</li>
</ol>
Here, a paragraph was given to introduce the diagram and then an
ordered list (<ol>) was used to enumerate the steps in doing the assignments
for the class.
The next page will discuss converting slides with notes.