Accessibility Guidelines Bell.ca Special Needs. Cesart April 2006

Size: px
Start display at page:

Download "Accessibility Guidelines Bell.ca Special Needs. Cesart April 2006"

Transcription

1 Cesart April 2006

2 Created by: Dominic Ricard & Loïc Nunes Effective Date: April 2006

3 TABLE OF CONTENTS 1 Introduction Target Audience Copy Decks Document structure Headings/titles Language identification Images - ALT texts and longdesc Links - understandable out of context Images / Visual Content Colour and contrast Size / spacing XHTML Code Basic HTML tags Meta tags Cascading style sheets Alternate style sheet (High Contrast) Alternate style sheet (Large Font) New/modified elements JavaScript Province selection menu Expandable boxes Menus and navigation - hidden and visible Tab order Access keys Tables Table structure (THEAD, TBODY, Caption, etc.) Scope and header attributes Legal notes (footnotes) Cross-browser code Tools XHTML validators WAI validators Firefox extensions Screen readers Appendices References WCAG 1.0 checklist Glossary

4 1 Introduction The situation? Customers with visual, hearing, physical or mental disabilities are not always able to navigate bell.ca to find the information they are looking for. The solution? Build an accessible section that will help disabled customers to access information on products and allow them to purchase them through the call centre. This section will be built using the WAI Double-A accessibility standards as defined by the W3C. The WCAG 1.0 Priority 1 and 2 checklists will be used to define the accessibility level of the section. ( This document presents the different elements that are used in the Bell.ca Special Needs section and how to properly apply accessibility requirements to them. Four good reasons for making a Web site accessible: Accessibility: a general choice An accessible Web site is one that offers equivalent access regardless of the technical equipment used, the read software and its customization options. The content and functionalities of the service are designed in a way that is independent of how they will ultimately be presented on the screen (or other device). This is accomplished by the use of Cascading Style Sheets (CSS), ALT attributes for images, text dubbing for audio webcasts, etc. Accessibility: a public-spirited choice An accessible site provides handicapped individuals with access via specific technical devices. Having Web access affords these individuals greater autonomy. Web access plays a role in social, cultural and career integration. In Canada, over 2 million people are impacted. Accessibility: an economical choice Site longevity in a context of constant technological change. Lower maintenance costs. Higher quality of service for everyone. Better image for the BCE.ca site. 4

5 Accessibility: an international choice WAI/W3C. Widely distributed directives. A principle adopted by the Canadian government. 2 Target Audience This document is written with the assumption that the reader has a good understanding of HTML standards, i.e., XHTML 1.0 Transitional, CSS 2.1 and JavaScript. For the sections that deal with graphical elements, we also assume the user is familiar with the tools required to manipulate these elements (e.g., Flash, Photoshop, etc.). We also assume that the reader has a good understanding of the Bell.ca Style Guide and the tools used by Bell.ca to integrate content. The target audiences for this document are the content writers, designers and content integrators of Bell.ca. 3 Copy Decks In this section, we present the different elements that need to be identified by content writers in producing a copy deck. These elements are essential in order for screen readers to read and interpret the text properly. 3.1 Document structure People with handicaps use peripherals that give sequential access to information. This makes it important to provide a logical navigation structure to make it easier to navigate pages and understand their content. The content structure must be kept simple and clear, respecting target users needs and use capacities. In terms of page content navigation, the title, taborder, tabindex and accesskey elements are the ones primarily used to provide rapid access to different types of content Headings/titles Establish a hierarchy for page content by using H1, H2, H3, H4 titles. For instance, a user employing a screen reader will be able to read the H1 title first, followed by the others, to get a rapid overview of the page s contents, exactly as one would use an index in a Word document. This means the reader doesn t have to look at the entire page to decide what is interesting and what is less so. 5

6 The use of titles in combination with the tabindex and accesskey elements also gives the user better control of the navigation from the keyboard. 3.2 Language identification Definition of language is essential in order for screen readers and other tools to properly output the content to the user. For example: Top Navigation: Need to identify language change lang="fr" 3.3 Images - ALT texts and longdesc As the copy decks are written, design elements are defined with their content. In an accessible site context, the content writer must bear in mind that the document needs to be understandable even without the presence of visual content. To allow users to understand the content of images, we need to describe it as clearly as possible, through the use of ALT texts and longdesc. The description sometimes needs to be more detailed than the text found in the image, since blind users won t have the visual assistance given by the image itself. Every single image on every single page of the section should have a text equivalent, or so-called "ALT text", specified in the alt attribute of the <img> tag. Screen readers read it, text only browsers display it, Google indexes it, and visual browsers can display it as a tooltip or on the status line (although you as the designer can override this). Example of bad ALT text: alt="click here!" Serves no useful purpose (unless of course it's on a graphic that says "Click here!"). Example of good alt text: alt="new Philips mobile phone with flip, camera and Bluetooth". This is useful and easy to understand without the context. 3.4 Links - understandable out of context Adding titles to links 6

7 For example, adding a title attribute is really important when the link text itself might not be sufficient for the reader to decide whether to click the link. Examples: On the Special Needs Centre landing page, we have a link to the discount page. The link text is simply Discounts, but the title attribute gives some further information: <a title=" Discounts on equipment and services are available " href="/stats/">discounts</a> 4 Images / Visual Content This section covers some elements that need to be taken into consideration when creating mockups and content fo rthe Special Needs section. 4.1 Colour and contrast A specific example that is common on Web sites: link text There are two potential problems related to colour. First, your link text may not contrast sufficiently with your background colour. Any very light colour on a white background is trouble; the link text may simply disappear into the background. Similarly, a dark colour on a black background is trouble. This actually applies to all text, not just links, but it's fairly common on Web sites for text to be readable and links to be made unintentionally unreadable, which is why I mention links in particular. The second potential problem concerns link decoration. The CSS redefines a rule to make links a different colour, so you need to make sure that the links are also distinguishable in some other way, like bold font. Otherwise, the link text might be perfectly readable, but colour-blind people won't be able to tell that it's a link. To check for link decoration problems, look at the CSS rules for "a" tags. For example, if you have a rule like this in your CSS, then your links are only distinguished by their redness, which is not sufficient: a { text decoration: none; color: red; } You can keep your links red, but you need to make sure that the links are also bold, or underlined, or italicized. To make them bold as well as red, add one line: a { text decoration: none; color: red; font weight: bold; /* add this line */ 7

8 Hints Don t use red on black or black on red. Don t use red next to green or green next to red. Use colour names that don t create confusion. Black, grey and white are well perceived by almost everyone. WCAG guideline: don t rely on colour exclusively; use another mode (text and graphics must be understandable without the colour). Make sure there is good contrast to ensure good readability. Color should be reinforced by other methods such as bold or underlining. Avoid colour references in the text (e.g., don t say: as shown in the yellow box ). Add examples (Requires final Mockups) 4.2 Size / spacing To be defined by Graphic Designer (Requires final Mockups) 5 XHTML Code Code is very important when it comes to accessibility. It is used to describe in a logical manner how the content should be presented to the user. Accessible code means that absence of JavaScript or CSS will not affect the content structure and actual content of the document. It might affect the presentation or the "cool" features but the site must remain browsable even if these features are disabled (intentionally or because they are unavailable on the browser/device used). As you are writing code, you need to ask yourself these questions: - How will someone access this without a mouse? - How will this display without CSS? - What should I do if the user does not have "Plugin XYZ"? - What will happen to my page if the font size is increased On top of that, it is important to use the right HTML markup in the right place. Common accessibility mistakes include: - Do not use <Hx> tags to set "size" of text: Heading tags should only be used to define the structure of a document. H1 8

9 would be the page title, H2 would be a chapter title, H3 a section title, and so on. - Do not use tables to align presentation elements: Tables should only be used to format "DATA". A list of products, a calendar and a channel guide are all good examples of places where tables should be used. The approach proposed by the W3C consists of separating the structure of a document from its presentation. This solution, implemented in xhtml, makes it possible to structure the document in a way that is independent of the output peripheral, while CSS style sheets are used for layout purposes. This latter technology supports browser screens as well as voice synthesizers, printing, Braille printers, and so on. Example: CSS syntax will be used to describe the layout of H1-type titles, and H2 must be used to indicate a subsection of H Basic HTML tags The HTML structure of an accessible document does not differ much from what we are used to. Good structure and properly defined elements are basically the keys to a good accessible site. Define DOCTYPE: (Current DOCTYPE used on NBCA) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " HTML tag: (Need to define document language): <html lang="en" xml:lang="en xmlns=" 5.2 Meta tags In addition to the standard Description and Keywords tags, Dublin Core Metadata tags can be used to convey more information. For the Special Needs section, the following tags were added to the documents: DC.Title DC.Language DC.Subject DC.Description These meta tags help identify the content of the document and the language used in it. 9

10 Provide example of content for each tag. To be defined by Bell. 5.3 Cascading style sheets The style sheets defined in the course of the New Bell.ca project already adhere to accessibility standards and do not need to be altered. New style sheets were nonetheless created to provide two additional looks to help users access the content: High Contrast and Larger Font Alternate style sheet (High Contrast) To be defined by HTML Integrator Alternate style sheet (Large Font) To be defined by HTML Integrator New/modified elements To be defined by HTML Integrator. accessibility.css (new) #Accessibility-Nav { margin-left:-10000px; } #Accessibility-Nav ul li { display: inline; } #content.togglelist.togglelistelement { cursor: pointer; margin: ; } #content.togglelist li.fold.togglelistelement, #content.togglelist li.unfold ul li.fold.togglelistelement { background: url("/web/common/all_languages/all_regions/images/arrows/gen_gr_arrow_gray_dn.gif") no-repeat right center; } #content.togglelist li.unfold.togglelistelement, #content.togglelist li.unfold ul li.unfold.togglelistelement { background: url("/web/common/all_languages/all_regions/images/arrows/gen_gr_arrow_gray_up.gif") no-repeat right center; } #content.togglelist li.unfold ul li.fold ul, #content.togglelist li.unfold ul li.fold ol, #content.togglelist li.unfold ul li.fold a.close, #content.togglelist li.unfold ul li.fold div { display: none; } #content.togglelist li.unfold ul li.fold ul { display: none; } #content.togglelist li.unfold ul li.unfold { margin: ; display: block; } 10

11 5.4 JavaScript JavaScript is part of any good Web site. It allows developers to create dynamic effects and control some elements of the document. In order to make JavaScript accessible, it s important to be aware of several things: The user might not have a mouse to activate the element code ( onmouseover, "onmouseout"); Users employing screen readers will not see dynamic menus if they are not part of the document structure (menus driven by JavaScript arrays and manipulation of DOM). Using Anchors links will position the reader where the change occured; The user agent might not support JavaScript at all. In that case, the user must still be able to navigate through the site Province selection menu <!--province selector--> <li><a href="#regionselection" onclick="ymove('provinceselectorbox');">current Province:ON</a> <div id="provinceselectorbox" style="top: -108px;"> <a name="provinceselectoranchor" id="provinceselectoranchor" /> <label for="provinces">select your province:</label> <select id="provinces"> <option value="ab">alberta</option> <option value="bc">british Columbia</option> <option value="mb">manitoba</option> <option value="nb">new Brunswick</option> <option value="nl">newfoundland</option> <option value="nt">northwest Territory</option> <option value="ns">nova Scotia</option> <option value="nu">nunavut</option> <option selected="selected" value="on">ontario</option> <option value="pe">prince Edward Island</option> <option value="sk">saskatchewan</option> <option value="yt">yukon</option> <option value="qc">quebec</option> </select> <button class="orangerightarrow" type="button" onclick="gotoprovince(document.getelementbyid('provinces').value);"><img src="bell.ca_files/btn_arrow_rt.gif" alt=""></button> </div><!-- end provinceselectorbox --> </li> <!--end province selector--> To be improved. Still rely on JavaScript Expandable boxes Use background images to display the "show"/"hide" icon, as it should not be part of the menu structure. Also, if JavaScript is disabled, content should still be accessible (all menus should be expanded if JavaScript is disabled). Expandable Boxes Code Example. (JavaScript Code). To be defined by HTML Integrators. Expandable Boxes Code Example. (HTML Code). To be defined by HTML Integrators. 11

12 5.5 Menus and navigation - hidden and visible In order to make the site easier to navigate for disabled people (especially people using screen readers), a list of hidden links is added at the top of the site navigation in order to allow users to skip the navigation elements and go directly to the content they are looking for. This DIV should be placed right after Bell's logo. <div id="accessibility-nav"> <ul> <li><a href="#content">skip to content</a></li> <li><a href="#mainnav">skip to navigation</a></li> </ul> </div> Since NBCA does not use dynamic menus and the current NBCA menus are already presented in list form, no modification needs to be made to the current menu output code Tab order To ease access to content and navigation elements, taborder attributes have been added. Each section of content will have its own taborder group and each group will be a range of 1000 increments. Content links: Top navigation, logo and breadcrumb: Left navigation: Search: Footer:

13 Ensure a logical tab order through links, form controls, and objects. The order of links on HTML pages is positioned to provide the best response to the specific use characteristics of adapted peripherals such as screen readers, Braille displays, etc Access keys Most browsers support jumping to specific links by typing keys defined on the website. On Windows, this is done by pressing ALT + an access key; on Macintosh, by pressing Control + an access key. While there are no standards for which keys should be assigned to which features, here are keyboard shortcuts for all pages. They define the following: Access key 1 Home page Access key 2 Skip navigation link Access key 3 Contact us Access key 4 Site map Access key 5 Legal Access key 6 Accessibility statement 13

14 Example: to skip navigation links, create a link to skip over the navigation bar, and assign it accesskey="2". <a class="skiplink" href="#startcontent" accesskey="2">skip over navigation</a> 5.6 Tables Until recently, tables were used on bell.ca to render graphical elements of content pages. It was the best way to format pages so that they would be properly displayed in Netscape 4.75, which was a Bell.ca-supported browser. Now that Bell no longer supports this browser, tables have been replaced by DIVs to align and position the content properly. This does not mean that tables should never be used. Tables are the way to go when presenting tabular information (data tables). In the Special Needs section, we use tables to display every list of products for all lines of business. Example of a 3-column products table (icon, product description, price) The most important thing in creating a data table is marking up the headers properly. In the case of a catalogue with prices, this means placing the prices of equipment along the top. You should definitely include headers for the price and equipment; if you don't want them actually visible, you can make them invisible with CSS. But the headers need to be there nonetheless, because screen readers rely on them to help blind users 14

15 navigate through the table without getting lost. If we don t put them in, we get a bunch of prices, but no context to keep track of them. Adding proper headers to the catalogue allows screen reader software to associate the table header (prices) with the table data (equipment), and it reads them together: e.g. "Sony mobile $55, Ericsson mobile $35, Panasonic mobile $85" Another important issue: the <caption> tag must be the first thing after the <table> tag, and the row of <th> tags should be the first thing after that Table structure (THEAD, TBODY, CAPTION) Example of table code for Wireless Phones. To be defined by HTML Content integrators Tags attributes (SCOPE & HEADERS) Example of table code for Wireline Care Plans. To be defined by HTML Content integrators 5.7 Legal notes (footnotes) To be defined by HTML Content integrators 5.8 Cross-browser code To be defined by HTML Content integrators 6 Tools Here's a list of tools to help us identify accessibility issues: 6.1 XHTML validators WAI validators WebXACT (Bobby); Cynthia says; Ocawa; Wave. 6.3 Firefox extensions The Mozilla/Firefox Accessibility Extension makes it easier for people with disabilities to view and navigate Web content. Developers can use the toolbar to check their structural markup to make sure it matches the page content. 15

16 Mozilla Accessibility Extension , by Illinois Center for Instructional Technology Accessibility, released on Jan 20, 2006 Firefox screen shot 6.4 Screen readers Jaws: 16

17 7 Appendices 7.1 References W3C 7.2 WCAG 1.0 checklist D:\_Data\ Accessibility\WCAG_C 7.3 Glossary Term NBCA WCAG Definition New Bell.ca Web Content Accessibility Guidelines 17

Accessibility in e-learning. Accessible Content Authoring Practices

Accessibility in e-learning. Accessible Content Authoring Practices Accessibility in e-learning Accessible Content Authoring Practices JUNE 2014 Contents Introduction... 3 Visual Content... 3 Images and Alt... 3 Image Maps and Alt... 4 Meaningless Images and Alt... 4 Images

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

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.

More information

Appendix H: Cascading Style Sheets (CSS)

Appendix H: Cascading Style Sheets (CSS) Appendix H: Cascading Style Sheets (CSS) Cascading Style Sheets offer Web designers two key advantages in managing complex Web sites: Separation of content and design. CSS gives developers the best of

More information

Web Accessibility Guidelines. For UN Websites

Web Accessibility Guidelines. For UN Websites Web Accessibility Guidelines For UN Websites INTRODUCTION... 3 A GENERAL ASSEMBLY MANDATE... 3 WHAT IS WEB ACCESSIBILITY?... 3 COSTS AND BENEFITS... 3 AUDIO AND AUDIOVISUAL CONTENT... 4 ACCESSIBILITY VALIDATION...

More information

Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014)

Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014) Voluntary Product Accessibility Template Blackboard Learn Release 9.1 April 2014 (Published April 30, 2014) Contents: Introduction Key Improvements VPAT Section 1194.21: Software Applications and Operating

More information

Voluntary Product Accessibility Template (VPAT)

Voluntary Product Accessibility Template (VPAT) Voluntary Product Accessibility Template (VPAT) Name of Product Date January 8 2016 Engineering Village (EV for short) Completed by Contact for More Information Heather Singleton Heather Singleton User

More information

Quick Web Accessibility. A guide for busy voluntary sector managers and designers. Produced by the Sensory Trust

Quick Web Accessibility. A guide for busy voluntary sector managers and designers. Produced by the Sensory Trust Quick Web Accessibility A guide for busy voluntary sector managers and designers Produced by the Sensory Trust Contents What s in this guide? How much will it all cost? About the accessibility guidelines

More information

HSU Accessibility Checkpoints Explained

HSU Accessibility Checkpoints Explained HSU Accessibility Checkpoints Explained Sources: http://bobby.watchfire.com/bobby/html/en/index.jsp EASI Barrier-free Web Design Workshop (version 4) Paciello, Michael G. WEB Accessibility for People with

More information

Web Development 1 A4 Project Description Web Architecture

Web Development 1 A4 Project Description Web Architecture Web Development 1 Introduction to A4, Architecture, Core Technologies A4 Project Description 2 Web Architecture 3 Web Service Web Service Web Service Browser Javascript Database Javascript Other Stuff:

More information

Web Accessibility means that a website is accessible if everyone, regardless of ability, can access the website and retrieve all the information

Web Accessibility means that a website is accessible if everyone, regardless of ability, can access the website and retrieve all the information Web Accessibility Web Accessibility means that a website is accessible if everyone, regardless of ability, can access the website and retrieve all the information available using any web browser on any

More information

Creating and Maintaining Accessible Websites with SiteCM

Creating and Maintaining Accessible Websites with SiteCM Creating and Maintaining Accessible Websites with SiteCM The purpose of this document is to introduce individuals and organizations who create and maintain web content to the concept of Web Accessibility

More information

Website Planning Checklist

Website Planning Checklist Website Planning Checklist The following checklist will help clarify your needs and goals when creating a website you ll be surprised at how many decisions must be made before any production begins! Even

More information

Pizza SEO: Effective Web. Effective Web Audit. Effective Web Audit. Copyright 2007+ Pizza SEO Ltd. info@pizzaseo.com http://pizzaseo.

Pizza SEO: Effective Web. Effective Web Audit. Effective Web Audit. Copyright 2007+ Pizza SEO Ltd. info@pizzaseo.com http://pizzaseo. 1 Table of Contents 1 (X)HTML Code / CSS Code 1.1 Valid code 1.2 Layout 1.3 CSS & JavaScript 1.4 TITLE element 1.5 META Description element 1.6 Structure of pages 2 Structure of URL addresses 2.1 Friendly

More information

Fast track to HTML & CSS 101 (Web Design)

Fast track to HTML & CSS 101 (Web Design) Fast track to HTML & CSS 101 (Web Design) Level: Introduction Duration: 5 Days Time: 9:30 AM - 4:30 PM Cost: 997.00 Overview Fast Track your HTML and CSS Skills HTML and CSS are the very fundamentals of

More information

WCAG 2.0 Checklist (Detailed)

WCAG 2.0 Checklist (Detailed) WCAG 2.0 Checklist (Detailed) For a complete listing of the WCAG (Web Content Accessibility Guidelines) 2.0, visit: http://www.w3.org/tr/2008/rec WCAG20 20081211. Perceivable - web content is made available

More information

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates What is a DIV tag? First, let s recall that HTML is a markup language. Markup provides structure and order to a page. For example,

More information

How to Develop Accessible Linux Applications

How to Develop Accessible Linux Applications Sharon Snider Copyright 2002 by IBM Corporation v1.1, 2002 05 03 Revision History Revision v1.1 2002 05 03 Revised by: sds Converted to DocBook XML and updated broken links. Revision v1.0 2002 01 28 Revised

More information

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University Web Design Basics Cindy Royal, Ph.D. Associate Professor Texas State University HTML and CSS HTML stands for Hypertext Markup Language. It is the main language of the Web. While there are other languages

More information

ebooks: Exporting EPUB files from Adobe InDesign

ebooks: Exporting EPUB files from Adobe InDesign White Paper ebooks: Exporting EPUB files from Adobe InDesign Table of contents 1 Preparing a publication for export 4 Exporting an EPUB file The electronic publication (EPUB) format is an ebook file format

More information

Web Accessibility Report

Web Accessibility Report Web Accessibility Report AnnArborCIL.org Divye Bokdia Introduction AnnArborcil.org is an accessible website with AAA conformance. Team of four Michigan students (refer team section) and a staff member

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Center for Faculty Development and Support Creating Accessible Word Documents With Microsoft Word 2008 for Macintosh CREATING ACCESSIBLE WORD DOCUMENTS 3 Overview 3 Learning Objectives 3 Prerequisites

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program, you ll find a number of task panes, toolbars,

More information

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file. Creative Specs Gmail Sponsored Promotions Overview The GSP creative asset will be a ZIP folder, containing four components: 1. Teaser text file 2. Teaser logo image 3. HTML file with the fully expanded

More information

Basic tutorial for Dreamweaver CS5

Basic tutorial for Dreamweaver CS5 Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to

More information

COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING

COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING COMMONWEALTH OF PENNSYLVANIA DEPARTMENT S OF Human Services, INSURANCE, AND AGING INFORMATION TECHNOLOGY GUIDELINE Name Of Guideline: Domain: Application Date Issued: 03/18/2014 Date Revised: 02/17/2016

More information

WEB DEVELOPMENT IA & IB (893 & 894)

WEB DEVELOPMENT IA & IB (893 & 894) DESCRIPTION Web Development is a course designed to guide students in a project-based environment in the development of up-to-date concepts and skills that are used in the development of today s websites.

More information

BUILDING MORE ACCESSIBILE SITES. SharePoint 2010

BUILDING MORE ACCESSIBILE SITES. SharePoint 2010 BUILDING MORE ACCESSIBILE SITES SharePoint 2010 Agenda Introduction SharePoint 2010 Improvements SharePoint 2010 Shortfalls Approaching Your Project Overview A short discussion on building SharePoint 2010

More information

How IBM is making Web applications more accessible with WAI-ARIA

How IBM is making Web applications more accessible with WAI-ARIA How IBM is making Web applications more accessible with WAI-ARIA David Todd IBM Human Ability & Accessibility Center dltodd@us.ibm.com 2008 IBM Corporation Overview How IBM Web applications notify screen

More information

Introduction to Web Design Curriculum Sample

Introduction to Web Design Curriculum Sample Introduction to Web Design Curriculum Sample Thank you for evaluating our curriculum pack for your school! We have assembled what we believe to be the finest collection of materials anywhere to teach basic

More information

Word 2007: Basics Learning Guide

Word 2007: Basics Learning Guide Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Responsive Web Design Creative License

Responsive Web Design Creative License Responsive Web Design Creative License Level: Introduction - Advanced Duration: 16 Days Time: 9:30 AM - 4:30 PM Cost: 2197 Overview Web design today is no longer just about cross-browser compatibility.

More information

MAGENTO THEME SHOE STORE

MAGENTO THEME SHOE STORE MAGENTO THEME SHOE STORE Developer: BSEtec Email: support@bsetec.com Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1

More information

Blackboard Web Community Manager WCAG 2.0 Support Statement February 2016

Blackboard Web Community Manager WCAG 2.0 Support Statement February 2016 Blackboard Web Community Manager WCAG 2.0 Support Statement February 2016 Blackboard February 2016 Page 1 of 20 Overview The following Support Statement provides an evaluation of accessibility support

More information

VPAT. Voluntary Product Accessibility Template. Version 1.5. Summary Table VPAT. Voluntary Product Accessibility Template. Supporting Features

VPAT. Voluntary Product Accessibility Template. Version 1.5. Summary Table VPAT. Voluntary Product Accessibility Template. Supporting Features Version 1.5 Date: Nov 5, 2014 Name of Product: Axway Sentinel Web Dashboard 4.1.0 Contact for more Information (name/phone/email): Axway Federal 877-564-7700 http://www.axwayfederal.com/contact/ Summary

More information

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet

More information

HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout

HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout Fall 2011, Version 1.0 Table of Contents Introduction...3 Downloading

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

Microsoft Word Track Changes

Microsoft Word Track Changes Microsoft Word Track Changes This document is provided for your information only. You SHOULD NOT upload a document into imedris that contains tracked changes. You can choose to use track changes for your

More information

Serena Software Voluntary Product Accessibility Report. Summary Table

Serena Software Voluntary Product Accessibility Report. Summary Table Serena Software Voluntary Product Accessibility Report Date: October 22, 2015 Name of Product: Serena Business Manager Contact for more Information (name/phone/email): Dave Easter / deaster@serena.com

More information

Best Practice in Web Design

Best Practice in Web Design Best Practice in Web Design Irrespective of whether you are intending to use a flat 'brochureware' website or an interactive e- commerce site, the overall look and feel of your website will play an important

More information

IAS Web Development using Dreamweaver CS4

IAS Web Development using Dreamweaver CS4 IAS Web Development using Dreamweaver CS4 Information Technology Group Institute for Advanced Study Einstein Drive Princeton, NJ 08540 609 734 8044 * helpdesk@ias.edu Information Technology Group [2] Institute

More information

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D 1 LEARNING OUTCOMES Describe the anatomy of a web page Format the body of a web page with block-level elements

More information

Interspire Website Publisher Developer Documentation. Template Customization Guide

Interspire Website Publisher Developer Documentation. Template Customization Guide Interspire Website Publisher Developer Documentation Template Customization Guide Table of Contents Introduction... 1 Template Directory Structure... 2 The Style Guide File... 4 Blocks... 4 What are blocks?...

More information

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1 SUBJECT TITLE : WEB TECHNOLOGY SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1 16 02 2. CSS & JAVASCRIPT Test

More information

http://ipfw.edu Quick Guide for Accessible PDF July 2013 Training: http://ipfw.edu/training

http://ipfw.edu Quick Guide for Accessible PDF July 2013 Training: http://ipfw.edu/training Accessible PDF Getting Started Types of Documents best suited for PDF on the Web Document is longer than 5 pages. You need to preserve the formatting or layout of the original document, e.g., for printing.

More information

<Insert Picture Here>

<Insert Picture Here> Designing the Oracle Store with Oracle Application Express Marc Sewtz Software Development Manager Oracle Application Express Oracle USA Inc. 540 Madison Avenue,

More information

Website Accessibility Under Title II of the ADA

Website Accessibility Under Title II of the ADA Chapter 5 Website Accessibility Under Title II of the ADA In this chapter, you will learn how the nondiscrimination requirements of Title II of 1 the ADA apply to state and local government websites. Chapter

More information

Web layout guidelines for daughter sites of Scotland s Environment

Web layout guidelines for daughter sites of Scotland s Environment Web layout guidelines for daughter sites of Scotland s Environment Current homepage layout of Scotland s Aquaculture and Scotland s Soils (September 2014) Design styles A daughter site of Scotland s Environment

More information

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17 Web Design Revision AQA AS-Level Computing COMP2 204 39 minutes 39 marks Page of 7 Q. (a) (i) What does HTML stand for?... () (ii) What does CSS stand for?... () (b) Figure shows a web page that has been

More information

Information and Communications Standard. Making your website more accessible

Information and Communications Standard. Making your website more accessible Information and Communications Standard Making your website more accessible Web accessibility benefits millions of users with disabilities, but it also benefits people without disabilities, like people

More information

Advanced Drupal Features and Techniques

Advanced Drupal Features and Techniques Advanced Drupal Features and Techniques Mount Holyoke College Office of Communications and Marketing 04/2/15 This MHC Drupal Manual contains proprietary information. It is the express property of Mount

More information

How To Design A Website For The Decs

How To Design A Website For The Decs ONLINE COMMUNICATION SERVICES FACTSHEET - DESIGN Created by: Mark Selan Version 1.1 Date Last Modified: April 2008 DESIGN GUIDELINES FOR GENER8 WEBSITES The purpose of this document is to provide Online

More information

Creating and Using Links and Bookmarks in PDF Documents

Creating and Using Links and Bookmarks in PDF Documents Creating and Using Links and Bookmarks in PDF Documents After making a document into a PDF, there may be times when you will need to make links or bookmarks within that PDF to aid navigation through the

More information

Introduction... 3. Designing your Common Template... 4. Designing your Shop Top Page... 6. Product Page Design... 8. Featured Products...

Introduction... 3. Designing your Common Template... 4. Designing your Shop Top Page... 6. Product Page Design... 8. Featured Products... Introduction... 3 Designing your Common Template... 4 Common Template Dimensions... 5 Designing your Shop Top Page... 6 Shop Top Page Dimensions... 7 Product Page Design... 8 Editing the Product Page layout...

More information

Web Development I & II*

Web Development I & II* Web Development I & II* Career Cluster Information Technology Course Code 10161 Prerequisite(s) Computer Applications Introduction to Information Technology (recommended) Computer Information Technology

More information

Dreamweaver. Introduction to Editing Web Pages

Dreamweaver. Introduction to Editing Web Pages Dreamweaver Introduction to Editing Web Pages WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 INTRODUCTION TO DREAMWEAVER... 1 Document Window 3 Toolbar 3 Insert Panel 4 Properties Panel

More information

Creating Electronic Portfolios using Microsoft Word and Excel

Creating Electronic Portfolios using Microsoft Word and Excel Step-by-Step Creating Electronic Portfolios using Microsoft Word and Excel The Reflective Portfolio document will include the following: A Cover Page for the portfolio - Include a Picture or graphic A

More information

CMS Basic Training. Getting Started

CMS Basic Training. Getting Started The (Content Management System), was designed to allow most people in an organization to contribute to or edit their website(s). Utilizing a set of templates and stylesheets, users can add or edit information

More information

Technical Series Tips for Designing Accessible Websites: Including Self-Assessment SNAP Tool

Technical Series Tips for Designing Accessible Websites: Including Self-Assessment SNAP Tool Technical Series Tips for Designing Accessible Websites: Including Self-Assessment SNAP Tool 1 Preface The Job Accommodation Network (JAN) is a service of the Office of Disability Employment Policy of

More information

Further web design: HTML forms

Further web design: HTML forms Further web design: HTML forms Practical workbook Aims and Learning Objectives The aim of this document is to introduce HTML forms. By the end of this course you will be able to: use existing forms on

More information

Web Content Accessibility Guidelines 2.0 Checklist

Web Content Accessibility Guidelines 2.0 Checklist Updated: November 17, 2015 Product: Contact: Website: Source: Color Check: Disability Services Management System sales@accessiblelearning.com http://www.accessiblelearning.com http://webaim.org/standards/wcag/checklist

More information

ecommercesoftwareone Advance User s Guide -www.ecommercesoftwareone.com

ecommercesoftwareone Advance User s Guide -www.ecommercesoftwareone.com Advance User s Guide -www.ecommercesoftwareone.com Contents Background 3 Method 4 Step 1 - Select Advance site layout 4 Step 2 - Identify Home page code of top/left and bottom/right sections 6 Step 3 -

More information

Introduction to XHTML. 2010, Robert K. Moniot 1

Introduction to XHTML. 2010, Robert K. Moniot 1 Chapter 4 Introduction to XHTML 2010, Robert K. Moniot 1 OBJECTIVES In this chapter, you will learn: Characteristics of XHTML vs. older HTML. How to write XHTML to create web pages: Controlling document

More information

Web Development CSE2WD Final Examination June 2012. (a) Which organisation is primarily responsible for HTML, CSS and DOM standards?

Web Development CSE2WD Final Examination June 2012. (a) Which organisation is primarily responsible for HTML, CSS and DOM standards? Question 1. (a) Which organisation is primarily responsible for HTML, CSS and DOM standards? (b) Briefly identify the primary purpose of the flowing inside the body section of an HTML document: (i) HTML

More information

Contents. Downloading the Data Files... 2. Centering Page Elements... 6

Contents. Downloading the Data Files... 2. Centering Page Elements... 6 Creating a Web Page Using HTML Part 1: Creating the Basic Structure of the Web Site INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 2.0 Winter 2010 Contents Introduction...

More information

Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design

Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design Contents HTML Quiz Design CSS basics CSS examples CV update What, why, who? Before you start to create a site, it s

More information

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Word basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Word basics Word is a powerful word processing and layout application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features that

More information

KOMPOZER Web Design Software

KOMPOZER Web Design Software KOMPOZER Web Design Software An IGCSE Student Handbook written by Phil Watkins www.kompozer.net CONTENTS This student guide is designed to allow for you to become a competent user* of the Kompozer web

More information

TIME SCHEDULE OBJECTIVES

TIME SCHEDULE OBJECTIVES COURSE TITLE : WEB DESIGN COURSE CODE : 3073 COURSE CATEGORY : B PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDITS : 4 TIME SCHEDULE MODULE TOPICS PERIODS 1 Internet fundamentals 18 2 Html, css and web design

More information

Lesson Review Answers

Lesson Review Answers Lesson Review Answers-1 Lesson Review Answers Lesson 1 Review 1. User-friendly Web page interfaces, such as a pleasing layout and easy navigation, are considered what type of issues? Front-end issues.

More information

Section 1194.21 Software Applications and Operating Systems - Detail Voluntary Product Accessibility VPSX. Level of Support & Supporting Features

Section 1194.21 Software Applications and Operating Systems - Detail Voluntary Product Accessibility VPSX. Level of Support & Supporting Features Section 1194.21 Software Applications and Operating Systems - Detail Voluntary Product Accessibility VPSX (a) When software is designed to run on a system that has a keyboard, product functions shall be

More information

DRUPAL BASICS WEBSITE DESIGN & DEVELOPMENT. digital.uoregon.edu/drupal-basics

DRUPAL BASICS WEBSITE DESIGN & DEVELOPMENT. digital.uoregon.edu/drupal-basics DRUPAL BASICS WEBSITE DESIGN & DEVELOPMENT digital.uoregon.edu/drupal-basics Page 1 LOGGING IN To log in to your Drupal website: Type in the web address followed by /user - Example: https://ugs.uoregon.edu/user

More information

Madison Area Technical College. MATC Web Style Guide

Madison Area Technical College. MATC Web Style Guide Madison Area Technical College MATC Web Style Guide July 27, 2005 Table of Contents Topic Page Introduction/Purpose 3 Overview 4 Requests for Adding Content to the Web Server 3 The MATC Public Web Template

More information

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130

UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS. Silva. Introduction to Silva. Document No. IS-130 UCL INFORMATION SERVICES DIVISION INFORMATION SYSTEMS Silva Introduction to Silva Document No. IS-130 Contents What is Silva?... 1 Requesting a website / Web page(s) in Silva 1 Building the site and making

More information

LETTERS, LABELS & EMAIL

LETTERS, LABELS & EMAIL 22 LETTERS, LABELS & EMAIL Now that we have explored the Contacts and Contact Lists sections of the program, you have seen how to enter your contacts and group contacts on lists. You are ready to generate

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

vcenter Operations Manager Administration 5.0 Online Help VPAT

vcenter Operations Manager Administration 5.0 Online Help VPAT Administration 5.0 Online Help VPAT Product Name: Administration 5.0 Online Help VPAT Since the VPAT must be comprehensive, all Section 508 issues on all pages must be corrected to sustain compliance.

More information

Selectors in Action LESSON 3

Selectors in Action LESSON 3 LESSON 3 Selectors in Action In this lesson, you will learn about the different types of selectors and how to use them. Setting Up the HTML Code Selectors are one of the most important aspects of CSS because

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

Tagging an Existing PDF in Adobe Acrobat 8

Tagging an Existing PDF in Adobe Acrobat 8 Tagging an Existing PDF in Adobe Acrobat 8 Adobe Acrobat 8 allows for elements of a document to be tagged according to their purpose. These tags are not displayed in the document, but they are used by

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

WESTERN KENTUCKY UNIVERSITY. Web Accessibility. Objective

WESTERN KENTUCKY UNIVERSITY. Web Accessibility. Objective WESTERN KENTUCKY UNIVERSITY Web Accessibility Objective This document includes research on policies and procedures, how many employees working on ADA Compliance, audit procedures, and tracking content

More information

Web Design and Databases WD: Class 7: HTML and CSS Part 3

Web Design and Databases WD: Class 7: HTML and CSS Part 3 Web Design and Databases WD: Class 7: HTML and CSS Part 3 Dr Helen Hastie Dept of Computer Science Heriot-Watt University Some contributions from Head First HTML with CSS and XHTML, O Reilly Recap! HTML

More information

Short notes on webpage programming languages

Short notes on webpage programming languages Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of

More information

Creating a website using Voice: Beginners Course. Participant course notes

Creating a website using Voice: Beginners Course. Participant course notes Creating a website using Voice: Beginners Course Topic Page number Introduction to Voice 2 Logging onto your website and setting passwords 4 Moving around your site 5 Adding and editing text 7 Adding an

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

Coding HTML Email: Tips, Tricks and Best Practices

Coding HTML Email: Tips, Tricks and Best Practices Before you begin reading PRINT the report out on paper. I assure you that you ll receive much more benefit from studying over the information, rather than simply browsing through it on your computer screen.

More information

Website Builder Documentation

Website Builder Documentation Website Builder Documentation Main Dashboard page In the main dashboard page you can see and manager all of your projects. Filter Bar In the filter bar at the top you can filter and search your projects

More information

Checklist to Assist Schools in Conducting a Review of Accessibility and Equality and Diversity Information on their Websites

Checklist to Assist Schools in Conducting a Review of Accessibility and Equality and Diversity Information on their Websites Checklist to Assist Schools in Conducting a Review of Accessibility and Equality and Diversity Information on their Websites INTRODUCTION In May 2009, the Conservatoire published guidance for affiliate

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

Web Design for Programmers. Brian Hogan NAPCS Slides and content 2008 Brian P. Hogan Do not reproduce in any form without permission

Web Design for Programmers. Brian Hogan NAPCS Slides and content 2008 Brian P. Hogan Do not reproduce in any form without permission Web Design for Programmers Brian Hogan NAPCS Slides and content 2008 Brian P. Hogan Do not reproduce in any form without permission Quick Disclaimers This is a crash course! Many topics are simplified

More information

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D

Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D Chapter 2 HTML Basics Key Concepts Copyright 2013 Terry Ann Morris, Ed.D 1 First Web Page an opening tag... page info goes here a closing tag Head & Body Sections Head Section

More information

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites Asbru Ltd Asbru Ltd wwwasbrusoftcom info@asbrusoftcom Asbru Web Content Easily & Inexpensively Create, Publish & Manage Your Websites 31 March 2015 Copyright 2015 Asbru Ltd Version 92 1 Table of Contents

More information

Website Development Komodo Editor and HTML Intro

Website Development Komodo Editor and HTML Intro Website Development Komodo Editor and HTML Intro Introduction In this Assignment we will cover: o Use of the editor that will be used for the Website Development and Javascript Programming sections of

More information

collab.virginia.edu UVACOLLAB ECLPS: BUILDING COURSE PORTALS UVaCollab User Guide Series collab-support@virginia.edu

collab.virginia.edu UVACOLLAB ECLPS: BUILDING COURSE PORTALS UVaCollab User Guide Series collab-support@virginia.edu UVACOLLAB ECLPS: BUILDING COURSE PORTALS UVaCollab User Guide Series collab-support@virginia.edu Revised 4/28/2014 CONTENTS The eclps Overview... 3 Objectives... 3 Adding the Syllabus or Lessons Tool to

More information

Exercise 1 : Branding with Confidence

Exercise 1 : Branding with Confidence EPrints Training: Repository Configuration Exercises Exercise 1 :Branding with Confidence 1 Exercise 2 :Modifying Phrases 5 Exercise 3 :Configuring the Deposit Workflow 7 Exercise 4 :Controlled Vocabularies

More information

July 2012 Version 1.0. Section 508 Compliance Test Process for Microsoft Word Documents

July 2012 Version 1.0. Section 508 Compliance Test Process for Microsoft Word Documents July 2012 Version 1.0 Section 508 Compliance Test Process for Microsoft Word Documents Contents DHS Section 508 MS Word Test and Reporting Process... 2 DHS Section 508 Compliance Tests for MS Word... 6

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

More information

Terminal Four (T4) Site Manager

Terminal Four (T4) Site Manager Terminal Four (T4) Site Manager Contents Terminal Four (T4) Site Manager... 1 Contents... 1 Login... 2 The Toolbar... 3 An example of a University of Exeter page... 5 Add a section... 6 Add content to

More information