Ludzie pragną czasami się rozstawać, żeby móc tęsknić, czekać i cieszyć się z powrotem.
??Page Setup... dialog in File menu - Paper Size, Paper Source, Header, Footer, Orientation, Margins and Printer dialog
Header and Footer:
&w page title
&u page address (URL)
&d or &D date in short (&d) or long format (&D)
&t or &T time in 12 (&t) or 24 hours format (&T)
&p or &P current page number (&p) or total number of pages (&P)
&b or &b&b right-aligned text (&b) or centered text (&b&b) follows (MISTAKE IN IE 5 HELP)
&& single ampersand
??Print...(CTRL+P) - Printer/File, Print range, Copies, Print frames, Print all linked documents, Print table of links)
Tip: Don't forget, that you can print selected text as well (Selection radio button in Print range group).
Printing Linked Documents
This option is useful for printing whole web site (collection of linked web pages).
File menu - Print... dialog - following checkboxes:
??Print all linked documents
??Print table of links
Printing Documents with Frames
File menu - Print... dialog - radio buttons group Print frames:
??As laid out on screen (the composition of page will be maintained)
??Only the selected frame
??All frames individually (frames will be printed as separate documents)
Associated Programs
Tools menu - Internet Options dialog - Programs Tab:
??HTML editor, E-mail, Internet call, Calendar, Contact list ... says which programs will be used automatically for additional Internet services (e.g. when the mailto link is activated, corresponding mailing software is opened).
??Reset Web Settings... dialog
??Internet Explorer should check to see whether it is the default browser check box
Note: If checked, remains the IE 5 as a default browser, even if you install additional browsing software. If another program is registered as a default browser, asks whether you want to restore IE 5 as your default browser.
III. Accessibility to Everyone
Developers of web pages need to realize that users with many different perspectives will be using their work. Maybe, people with vision problems, those who are hard of hearing or deaf, people with motor skill disabilities and so on.
What does it mean accessibility? "Accessibility means providing flexibility to accommodate the users needs and preferences. In an Internet context, accessibility is making computer technology and Internet resources useful to more people than would otherwise be the case." 0
A. Validation Possibilities
To be sure, that our web site is at least readable for disabled people, we can review its accessibility:
??with automatic tools:
? Bobby Approved - http://www.cast.org/bobby
? W3C HTML Validator - http://validator.w3.org
? CSS validator, or
??with human review:
? on a black-and-white monitor
? with a text only browser (such as Lynx http://lynx.browser.org)
? with a self-voicing browser (IBM Home Page Reader)
? with multiple graphic browsers with images, sounds, scripts, frames and applets turned off
? without mouse (using only keyboard to navigate between pages)
? through yellow foil
Bobby Approved 3.1
Bobby is automatic tool for web page validation, based on w3c Accessibility Guidelines. It could be used:
??as a web applet http://www.cast.org/bobby
??as an application (installation file: installbobby.exe, 6376 KB is available on the CAST Homepage)
Bobby is a free application that will analyze web pages for their accessibility to people with disabilities. It will also find HTML compatibility problems that prevent pages from displaying correctly on different web browsers.
You can place Bobby Icon on your page, in case your page doesn't convey accessibility errors.
Starting the Accessibility Analysis
1. When you start Bobby, the input cursor is in the URL field, towards the bottom of the screen. Type in a URL (e.g., http://www.unss.sk) to analyze a page on the web. To examine a local file, click the Browse button or type a file URL (e.g., file:/c:/docs/unss/index.html).
2. If you want Bobby to analyze multiple pages automatically, change the item that reads "Don't follow links" to one of the other options. Change the maximum link level if desired to limit the depth of links away from the origin.
3. Press the GO button.
Looking at the Results
To see the results of the accessibility analysis, even while Bobby is still analyzing pages:
??Select a URL from the list and then press the Bobby Report button to get an accessibility report OR
??When Bobby has finished analyzing the pages for accessibility, press the Summary Report button to get an accessibility summary report for all pages tested during the session.
Getting Help
For more detailed instructions on using Bobby, see the Bobby Frequently Asked Questions page by choosing "Bobby FAQ" from the Help menu or typing CTRL+H. Additional information is available on the CAST web site (http://www.cast.org/bobby/).
IV. HTML and FrontPage Express with JAWS for Windows
A. About FrontPage Editor
Front Page Editor version 2 (FPE in following text) allows you to create a web page, even you don't know anything about HTML. Using this editor is very similar to using text editor Microsoft Word 97. This method is called WYSIWYG- What You See Is What You Get. It's also possible to check HTML source of the Page in View menu - HTML...dialog
Tip: You can always find "selection sensitive" properties... dialog in the Edit menu (ALT+ENTER). As an example, if no selection is made, Font Properties... dialog is available.
Application window
FPE's window consists of a Title bar, Menu bar, Tool bars, Status bar in the bottom of the window and the Desktop as many other standard Windows applications.
B. Simple HTML elements
Simplified version of an HTML Document could look like below.
Hello everybody!
??The entries inside the < > markers are called "tags" and are the primary HTML markup tool.
?? identifies the file as an HTML document. at the bottom of the document, marks the end. Putting a "/" in front of most tags means the end of element.
??After is which contains header information, that is not displayed in the document window. It is displayed in application's Title bar. marks the end of the header information.
??Information between and is displayed in the document's window.
Container tags
Container tag has an opening
Example:
...
Paragraph is a container tag.Horizontal Line is not a container tag.
Comments