Dreamweaver: Accessible Web Sites

Size: px
Start display at page:

Download "Dreamweaver: Accessible Web Sites"

Transcription

1 Dreamweaver: Accessible Web Sites Introduction Adobe Macromedia Dreamweaver 8 provides the most complete set of tools available for building accessible web sites. This workshop will cover many of them. It is a followup to "Dreamweaver Basics." We will cover the following topics: What is Accessibility and Why Is It Important? What Makes a Web Site Accessible? Dreamweaver Accessibility Preferences Choosing the Right Document Type Using Cascading Style Sheets Using Relative Elements Using Alternative Text for Images Using Heading Tags Using Titles and Access Keys for Links Using Summaries and Captions for Tables Scope for Table Row and Column Headings Using Labels for Form Elements Validating Your Web Pages Testing Your Web Pages Best Practices for Designing Accessible Websites Resources What is Accessibility and Why Is It Important? Simply put, accessible web sites pose no barriers to the disabled. The information and functionality contained in the web site are just as accessible to people with disabilities as they are to people without. There are many reasons to care whether or not your web site is accessible: Approximately 20 percent of the U.S. population has a physical disability. There are over 400,000 college students with disabilities in the U.S., several hundred of whom attend the University of Michigan. According to the University, educational activities are required to be accessible under the Americans with Disabilities Act (ADA). If your web site is federally funded, it is required by law to be accessible. Applicable laws include Title II of the ADA and sections 504 and 508 of the Rehabilitation Act. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 1

2 Are these laws enforced? There are no "accessibility police." However, lawsuits have been filed by groups that support the disabled against corporations with inaccessible web sites. What Makes a Web Site Accessible? According to the University of Michigan's Best Practices for Designing Accessible Websites, Software and Content ( "In general, Adaptive Technology (AT) users should be able to use your site or software without a mouse (using the keyboard only)." Additionally, people with vision disabilities use screen-reading software to listen to web sites instead of look at them. Web pages can (and should) be created to work better with screen reading software. The guidelines on the Best Practices page are listed at the end of this handout. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 2

3 Dreamweaver Accessibility Preferences In order to make sure that your copy of Dreamweaver does all the things described in this handout, make sure that your Dreamweaver Accessibility Preferences are set correctly. In Dreamweaver, click the Edit drop-down menu and choose Preferences. Choose the second category, Accessibility. You will see the following: Make sure that all four boxes are checked under Show attributes when inserting. The last two options are relevant to Dreamweaver users who have disabilities themselves. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 3

4 Choosing the Right Document Type Web sites that use valid XHTML 1.0 Transitional code are more accessible to people that use Adaptive Technology. XHTML stands for Extensible Hypertext Markup Language. XHTML 1.0 Transitional is just one of the many document types that Dreamweaver can create. Dreamweaver allows you to choose the document type when you create a new document: Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 4

5 To change the document type of an existing document, open the document, click the File drop-down menu and choose Convert: Using Cascading Style Sheets Web sites that use Cascading Style Sheets (CSS) for web site presentation instead of deprecated HTML elements (such as the font element) and attributes (such as the bgcolor attribute) are more accessible to the disabled. Dreamweaver 8 uses CSS for presentation by default. If your existing web site uses deprecated HTML elements and attributes for presentation, converting it to CSS presentation is a complicated process. In most cases, it is easier to start from scratch. Additionally, using CSS for positioning instead of tables makes web pages much more accessible. That means using layers instead of tables for layout. All of Dreamweaver's sample page designs use layers for positioning. If your existing web site uses tables for layout instead of layers, Dreamweaver does have a convert function (Modify -> Convert -> Tables to Layers). However, this does Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 5

6 not work well with complicated, nested tables. Always make a copy of your site before making these sorts of changes. It may be easier to start from scratch. Using Relative Elements Allowing the content on your web pages to be resized makes them much more accessible. Elements that are sized relative to other elements on your page instead of having their size fixed allow them to be resized. Fluid Page Widths vs. Fixed Page Widths Web pages that shrink and grow according to the size of the user's browser window have fluid width, while pages that stay the same width no mater what have fixed width. A web page that uses fluid width - it fills the browser screen no matter how big it is. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 6

7 A fixed-width web page - note the white space on the right. If your web page content is contained in a table, you can make it fluid width by setting that table width to 100% instead of a set pixel width. Likewise, if your web page content is contained in a layer, you can make it fluid width by setting the layer width to 100% instead of a set pixel width. If your web page content is not contained in a table or layer, it is fluid with by default. Text Size You should also allow your users to increase and decrease the size of the text on your page to accommodate their needs. Do this by choosing relative font sizes instead of absolute ones. Most web page text is measured in pixels. While in theory pixels is a relative measurement of font size, because of a bug in Internet Explorer, it is treated as absolute (meaning that it cannot be resized). Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 7

8 To solve this problem, use ems as your measure of font size instead of pixels: Choosing a text size of 1 em says "make the text on my page appear the same as the user's browser's default text size." If you want your text to appear a little smaller, use.9 em; If you want your text to appear a little larger, use 1.1 em, and so on. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 8

9 Using Alternative Text for Images An important accessibility guideline states that alternative text must be provided for all images on a web page. This is so that people who cannot see the images (either because they are disabled or because they have images turned off in their browser to make pages load faster) will still know what the image is all about. Dreamweaver makes it easy to add alternative text for images. When you insert an image, you are prompted to enter alternative text for the image: You cannot click OK until you have entered alternative text. The Long Description text field allows you to link the image to a web page that explains what the image is about. This is useful when the image description is more than just a few words. To add alternative text to an existing image, select the image and then enter the alternative text via the Properties Panel. Using Heading Tags Using heading tags to structure the content on your web pages will not only provide context for screen reader users, but enable them to skim through a page. Screen readers treat text designated as headings differently than it does text designated as paragraphs. Users of screen readers use shortcut keys to cycle through the headings on your page. Use level-1 headings for page titles, level-2 headings for section titles, level-3 headings for sub-section titles, and so on. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 9

10 Titles Using Titles and Access Keys for Links The title attribute for the link tag allows additional information about links to be read aloud by screen readers. When you click the Insert Link icon on the Common Toolbar, the resulting dialogue window contains a box for a title: Whatever you enter in the Title field will not only be read aloud by screen readers, but be displayed in a little box that floats above the page when any user mouses over the link. Adding a title to existing links isn't quite as easy because the title field is not present in the Properties Panel. Instead, you can do the following: click on the linked text right-click on the <a> symbol in the Tag Selector select Quick Tag Editor At the end of the tag enter the following: title="title text" replacing "title text" with the actual title text. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 10

11 Access Keys Access Keys enable users to go directly to links within a website by using keyboard letter or number combinations, saving scrolling and tabbing. Access Keys are invoked by pressing the alt (Windows) or apple/command (Mac) keys along with the character that has been designated. Access Keys are most typically assigned to the links you provide for web site navigation in sequential order. For example, if your web site navigation corresponds to the various sections of your web site such as "Home," "About Us," and so on, you could assign an Access Key of 1 to the "Home" link, an Access Key of 2 to the "About Us" link, and so on. When you click the Insert Link icon on the Common Toolbar, the resulting dialogue window contains a box for an Access Key: Like titles, adding an access key to existing links isn't quite as easy because the access key field is not present in the Properties Panel. Instead, you can do the following: click on the linked text right-click on the <a> symbol in the Tag Selector select Quick Tag Editor At the end of the tag enter the following: accesskey="1" Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 11

12 Using Summaries and Captions for Tables Tabular data is very difficult for screen-readers to read in a way that makes sense to the user. One method of making it easier for your users with vision disabilities is to provide a caption and a summary of the table data. When you click the Insert Table icon on the Common Toolbar the following dialogue window will open: In the Accessibility section of this window, any text that you enter into the Caption field will be displayed above the table and read aloud by screen readers. Any text that you enter into the Summary field will not be displayed, but will be read aloud by screen readers. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 12

13 Using Scope for Table Row and Column Headings Another way to make tabular data more accessible to the disabled is to assign "scope" to table headers. Let's say you have a table that looks like this: North East South West States Population 30,000 40,000 50,000 60,000 It would be nice for someone who cannot see the table to know that the number 12 is associated with both "States" and "North." This can be accomplished with the Scope attribute. When you assign it to a column heading, it puts all the data in that column in its scope. Likewise, when you assign it to a row heading, it puts all the data in that row in its scope. When you click the Insert Table icon on the Common Toolbar the following dialogue window will open: In the Header section of this window I have chosen to make both the first column and the first row header rows. This will cause Dreamweaver to add the scope attribute to the header row and column automatically. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 13

14 Using Labels for Form Elements Web forms can be especially challenging for people with disabilities. While users can use their keyboards to tab between form fields, they may not be able to tell what information each form field is asking for. Dreamweaver makes forms much more accessible by associating labels with each form field. When you insert any type of form field into your document via the Forms toolbar, the Input Tag Accessibility Attributes dialogue window will appear: Whatever you type into the Label field will be displayed on your page in the Position you specify (before or after the form field itself). Always choose Attach label tag using 'for' attribute as the Style of the label. Do this instead of typing the label onto your web page by hand. This will associate the label with the form field. Note that you can also add Access Keys and change the tab index order in this dialogue window. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 14

15 Validating Your Web Pages Once your web pages are ready for testing, you can use Dreamweaver to test your pages against: 1. The standard for the document type you have chosen (e.g., XHTML 1.0 Transitional) 2. Accessibility Guidelines Click the File drop-down menu and choose Check Page. To see if your document validates against its standard, choose Validate Markup. To see if your document validates against accessibility guidelines, choose Check Accessibility: You can validate the document you currently have open, your entire site, or selected files. Once you select one of these options, the results of your check will be displayed in the Results Panel below the Properties Panel: Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 15

16 Sample Validation Report Sample Accessibility Guidelines Check Right-click each item and choose More Info to get more information about any errors found. Testing Your Web Pages While nothing can suffice for watching a user with a disability navigate through your site, there are ways that you can see how accessible your site really is. 1. Check to see how color-blind users will see your page at Vischeck, 2. Download the complimentary trial version of the screen-reading software IBM Home Page Reader, 3. Use the Digital Media Commons Usability Lab, They have computers equipped with screen reading software. 4. Run your web pages through WebXACT, a free online service that lets you test single pages of web content for quality, accessibility, and privacy issues. 5. Run your web pages through A-Prompt, the website accessibility verifier, 6. Run your web pages through the Wave 3.0 Accessibility Tool, 7. Run your web site through the Truex Online 2.0 beta tool, Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 16

17 Best Practices for Designing Accessible Websites The following items will help persons with disabilities adjust your site to their needs and utilize AT shortcuts (taken from 1. Use Cascading Style Sheets (CSS) for website presentation and, when possible, positioning. For presentation, this includes font size, color, style; behavior (such as mouseover or focus); borders; padding; margins; background; etc. For positioning this includes: distance from top and sides; x, y and z axis; etc. If you use a table for page layout, make it a simple layout, without nesting. 2. Use relative elements like "percentage" or "em" instead of "pixels." Common instances include font sizes, table layouts, and css-based positioning. 3. Use the <alt> attribute to describe images. Images that contain information relevant to understanding the purpose or providing context to the page should have a description. Images that do not provide information or context should have <alt="">. 4. Use <h1, h2, etc.> tags to chunk page content under headings and for links to key content areas. Heading tags will not only provide context for screen reader users, but enable them to skim through a page. 5. Follow WCAG 1.0 guidelines for forms. For example, associate labels with input boxes (<label for> and <id> tags) and group related parts of a form using the <fieldset> and <legend> tags. 6. Follow WCAG 1.0 guidelines for tables. For example, include summaries and captions for data tables, and associate column headings with data using the <scope> attribute. 7. Provide keyboard-based navigation through the site using accesskeys and skip links. For example. provide accesskeys to Accessibility Information about the site (0), Home (1), What's New (2), Site Map (3), Search (4) and Content (C). Provide skip links from the top of the page to Main Content and other key areas of your site. 8. Use meaningful text for links. AT users tab through sites, listening to links for context. Links should therefore have text that clearly identifies their purpose or destination, to make sense without the surrounding text. 9. Add the <title> attribute to links and frames. Titles should provide additional information not otherwise available in link text. Frame titles can be used for navigation. 10. Use color properly. Do not rely only on color to differentiate items in your site. For example, persons who are colorblind cannot distinguish between green and red, so highlighting text in red will not be helpful. Also, make sure there is sufficient contrast between background color and items in the foreground, such as buttons and text, so that people with compromised vision will clearly see them as separate. 11. Caption video. Provide captioning for every video that you provide online. MAGpie ( is an excellent, easy to use tool for captioning WindowsMedia, RealPlayer and QuickTime files. Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 17

18 Resources Dreamweaver 8 Accessibility Best Practices for Designing Accessible Websites, Software and Content Web Accessibility Initiative (WAI) from the World Wide Web Consortium Accessible web site Design Updated 4/13/2007 Dreamweaver: Accessible Web Sites Page 18

Creating Accessible Web Sites with EPiServer

Creating Accessible Web Sites with EPiServer Creating Accessible Web Sites with EPiServer Abstract This white paper describes how EPiServer promotes the creation of accessible Web sites. Product version: 4.50 Document version: 1.0 2 Creating Accessible

More information

Blackboard staff how to guide Accessible Course Design

Blackboard staff how to guide Accessible Course Design The purpose of this guide is to help online course authors in creating accessible content using the Blackboard page editor. The advice is based primarily on W3C s Web Content Accessibility Guidelines 1.0

More information

Seven Steps to Creating an Accessible PowerPoint Slideshow

Seven Steps to Creating an Accessible PowerPoint Slideshow Seven Steps to Creating an Accessible PowerPoint Slideshow Disability Access Services i About Disability Access Services Centralized Resource and Information on Disability Access Disability Access Services

More information

Seven Steps to Creating an Accessible Microsoft Word document

Seven Steps to Creating an Accessible Microsoft Word document Seven Steps to Creating an Accessible Microsoft Word document Disability Access Services i About Disability Access Services Centralized Resource and Information on Disability Access Disability Access Services

More information

Text and Lists Use Styles. What Are Styles?

Text and Lists Use Styles. What Are Styles? Creating Accessible Word Documents Using Microsoft Word 2003 Cassandra Tex, MBA Assistive Technology Specialist Student Disability Resource Center Humboldt State University Word documents are inherently

More information

Web Accessibility Checklist

Web Accessibility Checklist Web Accessibility Checklist = Web Content Accessibility Guidelines published by the World Wide Web Consortium (W3C) 508 = Section 508 of the Rehabilitation Act = Both CATE and Moodle take care of the rule

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Creating Accessible Word Documents 1 of 11 Creating Accessible Word Documents Contents 1. General principles... 1 2. Styles/ Headings... 2 3. Table of Contents... 3 Updating a Table of Contents... 5 4.

More information

Guide for Creating Accessible Content in D2L. Office of Distance Education. J u n e 2 1, P a g e 0 27

Guide for Creating Accessible Content in D2L. Office of Distance Education. J u n e 2 1, P a g e 0 27 Guide for Creating Accessible Content in D2L Learn how to create accessible web content within D2L from scratch. The guidelines listed in this guide will help ensure the content becomes WCAG 2.0 AA compliant.

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS A CSS page layout uses the Cascading Style Sheets format, rather than traditional HTML tables or frames, to organize the content on a web page. The basic building block

More information

CREATING ACCESSIBLE WEB PAGES

CREATING ACCESSIBLE WEB PAGES CREATING ACCESSIBLE WEB PAGES WITH DREAMWEAVER MX 2004 Introduction This document assumes that you are familiar with the use of a computer keyboard and mouse, have a working knowledge of Microsoft Windows

More information

UNIVERSITY OF NORTH CAROLINA WILMINGTON

UNIVERSITY OF NORTH CAROLINA WILMINGTON Department: Contact Person: Date: Email: Online - Web & Course Accessibility Checklist Text, presentation & content Text equivalent is provided for every non-text element (i.e., image) (Solution: add an

More information

COURSE DESIGN ACCESSIBILITY CHECKLIST

COURSE DESIGN ACCESSIBILITY CHECKLIST COURSE DESIGN ACCESSIBILITY CHECKLIST Introduction This checklist is an internal document to be consulted by the Instructional Designer and Faculty member in examining web accessibility in a specific course.

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Dreamweaver: Web Forms

Dreamweaver: Web Forms Dreamweaver: Web Forms Introduction Web forms allow your users to type information into form fields on a web page and send it to you. Dreamweaver makes it easy to create them. This workshop is a follow-up

More information

Agilix Buzz Accessibility Statement ( )

Agilix Buzz Accessibility Statement ( ) Agilix Buzz Accessibility Statement (08 30 2016) Voluntary Product Accessibility Template (VPAT) Software Applications and Operating Systems (Section 1194.21) Web based intranet and Internet information

More information

Creating an Accessible Microsoft Word document

Creating an Accessible Microsoft Word document Creating an Accessible Microsoft Word document Use Built-in Formatting Styles Using built-in formatting styles could be the single most important step in making documents accessible. Built-in formatting

More information

College Website Review and Revision for Accessibility

College Website Review and Revision for Accessibility College Website Review and Revision for Accessibility Terence W. Cavanaugh, Ph.D. Curriculum and Instruction, University of North Florida, Jacksonville, FL USA. tcavanau@unf.edu Need College website should

More information

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 [AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 Length : 2 Days Audience(s) : New or existing users Level : 3 Technology : Adobe Dreamweaver CS6 program Delivery Method : Instructor-Led (Classroom) Course

More information

Online Accessibility Guidelines

Online Accessibility Guidelines Online Accessibility Guidelines Headings Lists Links Tables Color Guideline Why Is This Important? Use properly formatted headings to structure a page. Headings help to organize content, making it easier

More information

Websites and Access for People with Disabilities

Websites and Access for People with Disabilities Websites and Access for People with Disabilities Connecticut Library Association Conference April 20, 2010 Kathy Gips, Director of Training Dennis Begany, Network Administrator New England ADA Center Institute

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

Accessible Word Documents

Accessible Word Documents Accessible Word Documents Using MS Word for Windows Why make documents accessible? Making accessible documents ensures that they usable by the widest range of users, but also ensures your document is easier

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding the availability

More information

YuJa Enterprise Video Platform WCAG 2.0 Checklist

YuJa Enterprise Video Platform WCAG 2.0 Checklist Platform Accessibility YuJa Enterprise Video Platform WCAG 2.0 Checklist Updated: December 15, 2017 Introduction YuJa Corporation strives to create an equal and consistent media experience for all individuals.

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Dreamweaver Tutorial #2

Dreamweaver Tutorial #2 Dreamweaver Tutorial #2 My web page II In this tutorial you will learn: how to use more advanced features for your web pages in Dreamweaver what Cascading Style Sheets (CSS) are and how to use these in

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

1 of 7 8/27/2014 2:26 PM Units: Teacher: WebPageDesignI, CORE Course: WebPageDesignI Year: 2012-13 Designing & Planning Web Pages This unit will give students a basic understanding of core design principles

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

Reading Introduction to Web Accessibility

Reading Introduction to Web Accessibility Reading 8.3 - Introduction to Web Accessibility By WebAIM.org Introduction Most people today can hardly conceive of life without the internet. Some have argued that no other single invention has been more

More information

VMware AirWatch 8 VPAT

VMware AirWatch 8 VPAT VMware, Inc. 3401 Hillview Avenue Palo Alto, CA 94304 (877) 486-9273 main (650) 427-5001 fax www.vmware.com VMware AirWatch 8 VPAT May 2015 Since the VPAT must be comprehensive, all Section 508 issues

More information

EPiServer s Compliance to WCAG and ATAG

EPiServer s Compliance to WCAG and ATAG EPiServer s Compliance to WCAG and ATAG An evaluation of EPiServer s compliance to the current WCAG and ATAG guidelines elaborated by the World Wide Web Consortium s (W3C) Web Accessibility Initiative

More information

Adobe Sign Voluntary Product Accessibility Template

Adobe Sign Voluntary Product Accessibility Template Adobe Sign Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding the

More information

Creating Accessible Documents

Creating Accessible Documents Creating Accessible Documents How-To Guide for MS Office 2016 This guide is intended users of Microsoft Office 2016 (PC and Mac) to help them make Word documents, PowerPoint presentations, and PDF files

More information

VPAT Web Content Accessibility Guidelines 2.0 level AA

VPAT Web Content Accessibility Guidelines 2.0 level AA VPAT Web Content Accessibility Guidelines 2.0 level AA It is strongly recommended Technical Staff who are trained in Accessibility complete this form. The comments portion must be filled in to further

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

Handshake Accessibility Overview

Handshake Accessibility Overview Handshake Accessibility Overview Handshake takes accessibility seriously. This document provides an overview of our commitment to making Handshake accessible to every user. Handshake takes the following

More information

Accessible Web Sites and EPiServer

Accessible Web Sites and EPiServer Accessible Web Sites and EPiServer How implementation of accessible Web sites can increase equal access and opportunities for everyone using the Web. WHITE PAPER WHAT IS ACCESSIBILITY? Accessibility affects

More information

Adobe ColdFusion 10 Voluntary Product Accessibility Template

Adobe ColdFusion 10 Voluntary Product Accessibility Template Adobe ColdFusion 10 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

High-level accessibility review BTAA (Ebsco ebooks - final version)

High-level accessibility review BTAA (Ebsco ebooks - final version) High-level accessibility review BTAA (Ebsco ebooks - final version) Primary Point of Contact Denis Boudreau Principal Web Accessibility Consultant Deque Systems, Inc. Web: www.deque.com Email: mailto:denis.boudreau@deque.com

More information

Page 1 of 4. Course Outline by Topic: Web Design Fall 2009 Instructor: Mr. O Connell Room 117

Page 1 of 4. Course Outline by Topic: Web Design Fall 2009 Instructor: Mr. O Connell Room 117 Page 1 of 4 Web Design Fall 2009 Instructor: Mr. O Connell Room 117 Texts: Macromedia Dreamweaver MX Hands On Training (Green/Rudner) Adobe Photoshop Elements 5.0 Classroom in a Book (Adobe Systems) Macromedia

More information

< building websites with dreamweaver mx >

< building websites with dreamweaver mx > < building websites with dreamweaver mx > < plano isd instructional technology department > < copyright = 2002 > < building websites with dreamweaver mx > Dreamweaver MX is a powerful Web authoring tool.

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

CSS FOUNDATIONS IN-DEPTH. The nitty-gritty of css...

CSS FOUNDATIONS IN-DEPTH. The nitty-gritty of css... CSS FOUNDATIONS IN-DEPTH The nitty-gritty of css... What is CSS? Cascading Style Sheets Style sheets define formatting rules that are applied to text, images, forms, and embedded and layout elements. A

More information

Advanced Dreamweaver CS6

Advanced Dreamweaver CS6 Advanced Dreamweaver CS6 Overview This advanced Dreamweaver CS6 training class teaches you to become more efficient with Dreamweaver by taking advantage of Dreamweaver's more advanced features. After this

More information

ACCESSIBLE DESIGN THEMES

ACCESSIBLE DESIGN THEMES WCAG GUIDELINES The Web Content Accessibility Guidelines (WCAG) has been made to guide the Web Content Developers and the Authoring Tools Developers in order to make the Web Content more accessible to

More information

Adobe Dreamweaver CS6 Digital Classroom

Adobe Dreamweaver CS6 Digital Classroom Adobe Dreamweaver CS6 Digital Classroom Osborn, J ISBN-13: 9781118124093 Table of Contents Starting Up About Dreamweaver Digital Classroom 1 Prerequisites 1 System requirements 1 Starting Adobe Dreamweaver

More information

USER GUIDE. MADCAP FLARE 2017 r3. Accessibility

USER GUIDE. MADCAP FLARE 2017 r3. Accessibility USER GUIDE MADCAP FLARE 2017 r3 Accessibility Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Guideline 1.2 Time-based Media: Provide alternatives for time-based media Success Criteria Recommendations Met

Guideline 1.2 Time-based Media: Provide alternatives for time-based media Success Criteria Recommendations Met Perceivable Web content is made available to the senses - sight, hearing, and/or touch Guideline 1.1 Text Alternatives: Provide text alternatives for any non-text content 1.1.1 Nontext Content All images,

More information

Started in 1995 Based in Kansas City area Have extensive background working for and with cooperatives More than 300 utility clients in 33 states A

Started in 1995 Based in Kansas City area Have extensive background working for and with cooperatives More than 300 utility clients in 33 states A ADA Moving Forward Started in 1995 Based in Kansas City area Have extensive background working for and with cooperatives More than 300 utility clients in 33 states A services company acting as an extension

More information

Lessons from an Accessible Website:

Lessons from an Accessible Website: Lessons from an Accessible Website: www.boston-ia.org Presentation by P.J. Gardner Bringing Information Architecture and Internet Accessibility Together www.boston-ia.org Kudos "This is one of the better

More information

USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004

USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 USING STYLESHEETS TO DESIGN A WEB SITE IN DREAMWEAVER MX 2004 Introduction This document assumes that you are familiar with the use of a computer keyboard and mouse, have a working knowledge of Microsoft

More information

What is Web Accessibility? Perspective through numbers... 2 Students will not always identify... 2

What is Web Accessibility? Perspective through numbers... 2 Students will not always identify... 2 Contents What is Web Accessibility?... 2 Perspective through numbers... 2 Students will not always identify... 2 Making Microsoft Word Documents Accessible... 4 Accessibility checker... 4 Heading styles...

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Page Layout Using Tables

Page Layout Using Tables This section describes various options for page layout using tables. Page Layout Using Tables Introduction HTML was originally designed to layout basic office documents such as memos and business reports,

More information

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal COMSC-030 Web Site Development- Part 1 Part-Time Instructor: Joenil Mistal Chapter 9 9 Working with Tables Are you looking for a method to organize data on a page? Need a way to control our page layout?

More information

Introduction to Dreamweaver

Introduction to Dreamweaver COMMUNITY TECHNICAL SUPPORT Introduction to Dreamweaver What is Dreamweaver? Dreamweaver helps you to create Web pages while it codes html (and more) for you. It is located on the bottom tray or in the

More information

Creating Universally Designed Word 2013 Documents - Quick Start Guide

Creating Universally Designed Word 2013 Documents - Quick Start Guide Creating Universally Designed Word 2013 Documents - Quick Start Guide Overview Creating accessible documents ones that work well with all sorts of technology can be a daunting task. The purpose of this

More information

Moodlerooms Voluntary Product Accessibility Template January 2016

Moodlerooms Voluntary Product Accessibility Template January 2016 Overview Moodlerooms Voluntary Product Accessibility Template January 2016 1194.22 Web-based Intranet and Internet Information and Applications 1194.31 Functional Performance Criteria 1194.41 Information,

More information

Adobe Dreamweaver CC 17 Tutorial

Adobe Dreamweaver CC 17 Tutorial Adobe Dreamweaver CC 17 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Adobe Dreamweaver CC Voluntary Product Accessibility Template

Adobe Dreamweaver CC Voluntary Product Accessibility Template Adobe Dreamweaver CC Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout

More information

Web Content Accessibility Guidelines 2.0 level AA Checklist

Web Content Accessibility Guidelines 2.0 level AA Checklist Web Content Accessibility Guidelines 2.0 level AA Checklist Date: April, 2016 Name of Product: SoftChalk Create 10 (both desktop and cloud web-launch versions) Contact for more information: email: help@softchalk.com

More information

Adobe Experience Manager (AEM) 6.2 Forms Workbench Voluntary Product Accessibility Template

Adobe Experience Manager (AEM) 6.2 Forms Workbench Voluntary Product Accessibility Template Adobe Experience Manager (AEM) 6.2 Forms Workbench Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making

More information

What is ADA Website Compliance?

What is ADA Website Compliance? What is ADA Website Compliance? More than 54 million Americans are disabled, and almost 10 percent of the online population has a disability. The Americans with Disabilities Act (ADA) was introduced in

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

Product Accessibility Conformance Report

Product Accessibility Conformance Report Product Accessibility Conformance Report Name of Product / Version Number: Contact for more information: Gillian Neff / gillian.neff @clarivate.com Clarivate Analytics remains dedicated to developing software

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

More information

Aleph - Web Opac Accessibility. Accessibility in Aleph500 Web OPAC

Aleph - Web Opac Accessibility. Accessibility in Aleph500 Web OPAC Accessibility in Aleph500 Web OPAC 1 CHANGE CONTROL Version Date Author Description 0.1 29.05.2007 Initial draft - v16 1.0 12.06.2007 Version for release - v16 1.1 15.06.2006 Updates v18 initial draft

More information

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Marketplace Simulations Date: September 20, 2017 Contact information:

More information

WCAG 2.0 Checklist. Perceivable Web content is made available to the senses - sight, hearing, and/or touch. Recommendations

WCAG 2.0 Checklist. Perceivable Web content is made available to the senses - sight, hearing, and/or touch. Recommendations WCAG 2.0 Checklist Perceivable Web content is made available to the senses - sight, hearing, and/or touch Guideline 1.1 Text Alternatives: Provide text alternatives for any non-text content Success Criteria

More information

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder.

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Lesson 1 using Dreamweaver CS3 To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project. (Note:

More information

Dreamweaver CS 5.5. University Information Technology Services. Training, Outreach, Learning Technologies, and Video Production

Dreamweaver CS 5.5. University Information Technology Services. Training, Outreach, Learning Technologies, and Video Production Dreamweaver CS 5.5 Creating Web Pages with a Template University Information Technology Services Training, Outreach, Learning Technologies, and Video Production Copyright 2012 KSU Department of Information

More information

Creating Accessible Microsoft Word Documents

Creating Accessible Microsoft Word Documents Creating Accessible Microsoft Word Documents Microsoft Word is one of the most commonly used word processing software packages, making it a ubiquitous tool to create documents that may be viewed online

More information

Adobe Flash Professional CC Voluntary Product Accessibility Template

Adobe Flash Professional CC Voluntary Product Accessibility Template Adobe Flash Professional CC Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

USER GUIDE MADCAP FLARE Accessibility

USER GUIDE MADCAP FLARE Accessibility USER GUIDE MADCAP FLARE 2018 Accessibility Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

Salesforce1 - ios App (Phone)

Salesforce1 - ios App (Phone) Salesforce1 - ios App (Phone) Web Content Accessibility Guidelines 2.0 Level A and AA Voluntary Product Accessibility Template (VPAT) This Voluntary Product Accessibility Template, or VPAT, is a tool that

More information

Creating Universally Designed Word 2010 Documents - Quick Start Guide

Creating Universally Designed Word 2010 Documents - Quick Start Guide Creating Universally Designed Word 2010 Documents - Quick Start Guide Overview Creating accessible documents ones that work well with all sorts of technology can be a daunting task. The purpose of this

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

What is Web Accessibility? Perspective through numbers... 3 Students will not always identify Headers in Canvas: As Easy as 1, 2 & 3...

What is Web Accessibility? Perspective through numbers... 3 Students will not always identify Headers in Canvas: As Easy as 1, 2 & 3... Contents What is Web Accessibility?... 3 Perspective through numbers... 3 Students will not always identify... 3 Headers in Canvas: As Easy as 1, 2 & 3... 5 We Know What Headers Are...... 5 Headers are

More information

Adobe Dreamweaver CS3 English 510 Fall 2007

Adobe Dreamweaver CS3 English 510 Fall 2007 Adobe Dreamweaver CS3 English 510 Fall 2007 Important: Before going through this handout, you should create a WWW directory on your ISU e-mail account. Otherwise, you will not be able to upload and view

More information

Dreamweaver CS3 Concepts and Techniques

Dreamweaver CS3 Concepts and Techniques Dreamweaver CS3 Concepts and Techniques Chapter 3 Tables and Page Layout Part 1 Other pages will be inserted in the website Hierarchical structure shown in page DW206 Chapter 3: Tables and Page Layout

More information

All-Ways Accessible. People experience the world in different ways. User Friendly Anyone can understand it. Versatile Easy to update.

All-Ways Accessible. People experience the world in different ways. User Friendly Anyone can understand it. Versatile Easy to update. All-Ways Accessible Accessible content is: User Friendly Anyone can understand it. Versatile Easy to update. Convertible Can be adapted to other formats. Legal Reduce your risk! People experience the world

More information

PDF Accessibility Guide

PDF Accessibility Guide PDF Accessibility Guide Microsoft Word to PDF Version: 1 Contents Introduction... 2 Best Practices... 2 Heading Structure... 2 How to Set Headings in Word... 3 How to Change Heading Styles... 3 Images...

More information

Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice

Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice Voluntary Product Accessibility Template (VPAT) ACUE Course in Effective Teaching Practice July 19, 2016 This Voluntary Product Accessibility Template, or VPAT, is a tool that administrators and decision-makers

More information

Assignments (4) Assessment as per Schedule (2)

Assignments (4) Assessment as per Schedule (2) Specification (6) Readability (4) Assignments (4) Assessment as per Schedule (2) Oral (4) Total (20) Sign of Faculty Assignment No. 02 Date of Performance:. Title: To apply various CSS properties like

More information

Adobe Fireworks CS6 Voluntary Product Accessibility Template

Adobe Fireworks CS6 Voluntary Product Accessibility Template Adobe Fireworks CS6 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

JIRA Editor Documentation Pasting from Word, Excel or Outlook

JIRA Editor Documentation Pasting from Word, Excel or Outlook JIRA Editor Documentation Pasting from Word, Excel or Outlook Date: [13 May 2015] Version: 1.0 Table of contents 1 Why JEditor in Jira 4 1.1 How does it work? 4 1.1.1 With ticket creation 5 1.1.2 With

More information

MS Word 2010 Accessibility Fundamentals

MS Word 2010 Accessibility Fundamentals MS Word 2010 Accessibility Fundamentals Adapted with permission from Accessibility Fundamentals for Microsoft Office 2013, New Horizons Computer Learning Centers, 2014 INTRODUCTION Accessibility is the

More information

ADOBE Dreamweaver CS3 Basics

ADOBE Dreamweaver CS3 Basics ADOBE Dreamweaver CS3 Basics IT Center Training Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu This page intentionally left blank 2 8/16/2011 Contents Before you start with Dreamweaver....

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

Adobe FrameMaker (2015 Release) Voluntary Product Accessibility Template

Adobe FrameMaker (2015 Release) Voluntary Product Accessibility Template Adobe FrameMaker (2015 Release) Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

There are four (4) skills every Drupal editor needs to master:

There are four (4) skills every Drupal editor needs to master: There are four (4) skills every Drupal editor needs to master: 1. Create a New Page / Edit an existing page. This entails adding text and formatting the content properly. 2. Adding an image to a page.

More information