During the summer of 1999, I participated in a program through the Department of Services for the Blind of Washington called YES (Youth Employment Services). That summer I had a job at the Seattle Lighthouse for the Blind in their Computer lab as a teacher’s assistant. One of my assignments was to make a document to teach blind people how to build web pages. My supervisors (and students) were very pleased with the outcome of this tutorial, and I have often shared this with friends who were learning HTML. Well, now I’m sharing it with you! As I learn more I will add to the content. So this new and improved resource is easy to follow and hopefully fun. And if there is ever anything that is not included on this tutorial, contact me, and I will try to help find the answer! |
Note: I have put the brackets in between these single quotation marks because the browser would read it as code rather then text. When writing your own html, do not use the quotes!
Web browsers are programs (IE and Netscape are most popular) that take the instructions (the HTML) and display your web page properly. Browsers ignore all of the formatting in your HTML document including white space. The following is an example:
Web building
So let's say we wanted a link to take us back to the table of contents (you have seen many of these on this page). The first thing you need is the link, it would look like this:
<a href="#contents"> Return to the Table of Contents </a>
Notice the # in front of the tag name!
Next you would put another tag at the table of contents. It would
look like this:
<a name="contents"> Table of contents </a> the table
of contents text in this tag would be the text you already have, or if
you perfer there not to be any text, you may just use:
<a name="contents></a>
Remember to make sure your tags are all named the same thing. you can have many '<'a href tags for one '<'a name tag, but only one '<'a name tag with the same name. Make sense?