HTML Made Easy: The XTND HTML Translator

Size: px
Start display at page:

Download "HTML Made Easy: The XTND HTML Translator"

Transcription

1 HTML Made Easy: The XTND HTML Translator Jonathan Ryan Day and Brian A. Sullivan Computer Science & Engineering Jeff Spitulnik School of Education Elliot Soloway Professor of Electrical Engineering and Computer Science Professor of Education Highly Interactive Computing Group (HI-C) Department of Electrical Engineering and Computer Science University of Michigan 1101 Beal Avenue Ann Arbor, MI Abstract Accessing documents on the World-Wide Web using NCSA Mosaic as an interface provides an unparalleled on-line educational information resource. Enabling users to present their compositions on the Web is as important as accessing existing information. To facilitate this, it is necessary for users to be able to easily compose documents to be accessed on the Web. At the Highly Interactive Computing group (HI-C) at the University of Michigan, we have created a tool which simplifies the publishing process. By developing a translator which allows users to create documents in a familiar application and save as an HTML file, we have eliminated the need to know how to compose HTML documents. The translator also allows importation of any HTML document for modification. We chose to target ClarisWorks for Macintosh as the document composition application. It is a popular application in the educational market as well as the industry in general. Our translator allows the users to create their documents and presentations containing text styles, and pictures as they normally would in ClarisWorks, and save their compositions as HTML files. To do so, the users simply select the HTML file format option in the 'Save As...' Standard File dialog. The translator is useful in converting existing ClarisWorks documents to HTML format as well. It provides WYSIWYG conversion and allows the user to specify links to other files. Once saved, the HTML files can be made accessible by uploading them to a WWW server. Introduction The Highly Interactive Computing Group at the University of Michigan consists of undergraduate and graduate students in both education and in computer science as well as professors from both fields and professionals. We work closely with schools to research ways in which computers can aid in, and further stimulate the educational process. Through interaction with students, educators, and administrators at Community High School in Ann Arbor, we are trying to determine which types of applications and tools are beneficial for educators and students. We then develop the applications or tools and test them in the classroom with the high school students. This gives us information about which types of software tools are useful and which are inappropriate or ineffective. This project was supported, in part, by a grant from the National Science Foundation [RED ].

2 Importance of the World-Wide Web and Mosaic in the classroom The World-Wide Web provides accessibility in finding information on virtually every subject from sources around the world. For students, this type of resource is a tremendous asset in the learning process. Not only does the Web provide information on topics which cannot be found anywhere else; with an HTML browser such as Mosaic, it also presents the data in a form which is new, and interesting to students and other users. From this point on, we will assume NCSA Mosaic or newer for Macintosh in all discussions of an HTML browser. As the world of information continues to increase in size, the Web provides a standard, easy to navigate information structure while Mosaic adds functionality and an inviting graphical interface [1]. All of this is very important when targeting students as users. The easier it is for them to find the resources they need, the more likely they will be to use and benefit from them. It is also important to realize that publishing information in the form of HyperText Markup Language (HTML) documents placed on a Web server for worldwide browsing is crucial in the educational process as well. It is relatively easy to get started browsing the Web to find a plethora of information, even as a novice computer user. However, this constitutes only half of the two-way information sharing path that the Web provides. Users need to be able to publish such documents for others to view. This, however, requires individuals to have some knowledge of the HyperText Markup Language to compose even the most basic documents. The HTML barrier to document composition The HyperText Markup Language is a markup language which is a Document Type Definition (DTD) written using the Standard Generalized Markup Language (SGML) model [2]. It is the standard format for hypertext documents being served by World-Wide Web servers. HTML itself has a framework which consists of tags within a text document which dictate the style of the body of text they surround, or they may indicate links to other documents and other types of resources available on the Web such as movie clips and audio clips. Several stumbling blocks exist for novice users trying to begin composing HTML documents. There is the task of finding information on HTML itself. Many on-line references and primers are easily accessible on the Web, but currency, completeness and clarity in documentation are some factors that complicate the process. For users not familiar with a markup language, the whole framework may be unfamiliar as well. Even when armed with documentation and an idea of how HTML is structured, it is often necessary to expend considerable time reformatting a document to achieve the desired result. Overall, it is very time consuming to compose documents when compared with composition through use of a familiar page layout or word processing application. Motivation to develop the translator The desire to allow users to compose HTML documents without having to learn HTML was sparked by research in the Highly Interactive Computing Group involving K-12 curricula. We realize how important it is to open the door to the Web for students, but at the same time, not to overwhelm them with the task of learning HTML. We found that, in order to make the procedure of creating HTML documents seamless to the students when using ClarisWorks for Macintosh, it was necessary to develop a translator which provided transparent translation to HTML format. It would not have been enough to simply develop an application which would allow drag and drop conversion or as a separate translation application entirely. Rather, a translation option accessible to the user through the 'Save As...' dialog box from within the application was exactly the desired solution. This was our primary motivation to develop the translator. We have realized the potential for application outside of the educational world as well, however. Implementation The XTND System Developed by the Claris Corporation, the XTND System allows an application to use a virtually unlimited number of file formats. The XTND System itself is a document which contains several routines which are called by XTND-capable applications. The job of the XTND System is to present a list of all available translators to the

3 Standard File dialog for the user to select and indicate which document to read from or write to [3]. The XTND System then loads the selected translator. From this point the translator does the remaining work. That is, it uses the available data either from the application on export or from the input file on import and performs the translation. The translator is, then, the intermediate piece in the model that determines which information gets passed from the application to a destination file or vice versa. The modularity of the XTND System allows each translator to be developed independently of other translators. The ability to create import and export translators for a specific file format without being concerned with other file formats or translators adds much flexibility in development. For these reasons, we chose to develop using the XTND System. XTND HTML Translator During the export process, the translator has access to data structures which contain data from the application. This data comes in different phases. If the data is text, it comes in the form of text runs, or continuous streams of text of like style [3]. Each text run may have any number of the available style characteristics associated with it. These characteristics include font type, size, style, color, and other formatting characteristics. They are important during export as the basis for which tags to write when exporting data to the destination HTML text file. The translator also has access to information about images contained in documents. If an image is encountered during export, it is denoted by an image flag which the translator checks at the beginning of each phase. If an image exists, the translator receives a pointer to the image [3] which it uses to write the image to a file. A more detailed description of how images are handled appears in the section on functionality mapping. As explained above, the translator receives information about a document being exported, then writes the data to the destination file as described in the mapping between ClarisWorks and HTML in the section on functionality mapping. The import process is very similar to the export process. During the import process, the translator reads data from the source file which is an HTML text file. As expected, nearly the reverse of the export process occurs. The text is read in by the translator and the tags are interpreted to determine what information is to be sent to the application. The translator sends information regarding the input data by using similar data structures as were used as information sources during export. The appropriate characteristics are set for the incoming text, and then passed to the application to be displayed for the user. Since the input file must be a text file, there are only text runs to process, however, depending on the tags read, it may be necessary to open an image which is linked to within the HTML document. The method followed in such cases is described in the section on functionality mapping. The user interface There are several pieces which make up the translation package for use with ClarisWorks. First, there is the XTND System itself, which comes with all Claris XTND-capable applications and resides in the Claris folder in the System Folder on a Macintosh. Then, the XTND HTML Translator is located in the Claris Translators folder in the Claris folder. Finally, to add ClarisWorks-specific functionality for handling links and styles, there is HTML Document stationery for ClarisWorks. This stationery document is a template which is used to aid in composing HTML documents. It has styles specific to HTML headers, preformatted text, and literal HTML commands listed in the Style menu as shown in Figure 1. This is done to provide a method for the user to specify headers and styles from the familiar ClarisWorks Style menu. Also included in the stationery is a macro with an associated shortcut button. When the shortcut palette is displayed, the 'Link' button appears as in Figure 2. When the user clicks on the macro button, a link is created in the manner described in the next section.

4 Figure 1. The upper section of this menu shows ClarisWorks standard styles and the text color option. The lower portion of the menu contains styles which are defined only in the HTML Document stationery [4]. Figure 2. The 'Link' macro button is in the lower left corner. A link is created in the document when this macro is executed by clicking the button [4]. The style menu additions and the shortcut macro mentioned above are the only noticeable differences in ClarisWorks using the HTML Document stationery as opposed to using no stationery at all. As mentioned above, the translation is initiated in the Standard File dialog by selecting the translator from the pop-up list of available translators. The dialogs are very similar for both export and import as shown in Figure 3. Therefore, without breaking from familiar user interface guidelines on the Macintosh [5], we have added functionality not inherent in ClarisWorks, enabling users familiar with ClarisWorks to translate their documents to HTML format easily. Figure 3. Left: The 'Save As...' Standard File dialog which the user is presented with when exporting. The HTML Translator is selected from the pop-up list. Right: The 'Open...' Standard File dialog with the HTML Translator selected as the import translator.

5 Mapping ClarisWorks and HTML functionality Due to the differences in the types of styles and document formatting supported by ClarisWorks and HTML it was necessary to evaluate how to map styles and formatting between the two representations of a document. This mapping was the model on which the translator code structure was based. The main issues to consider in the export mapping from ClarisWorks to HTML were document formatting, font type, size, and style, and support for links to other resources or documents. When looking at import functionality mapping from HTML to ClarisWorks, the issues are identical but handled very differently due to the nature of importing versus exporting. In exporting, since margins, multiple columns, page breaks, footnotes, document headers, and footers do not have direct counterparts in HTML files, these characteristics were ignored. We assumed the user created the document in a single column and that footnotes would be used for a special purpose other than as footnotes, which is described later in this section. Since the type of font used to display an HTML document is dependent only on the browser, the font type is irrelevant and is ignored. The remaining text export issues deal with font attributes. Font style and size are important issues in both ClarisWorks and HTML. In ClarisWorks any size font can be used, but the only method for specifying differences in font sizes in HTML is to tag the selected text with header level tags or other style tags, then specify different font sizes for each header or other tag type in the preferences of the HTML browser. This assumes use of a browser which allows users to specify such preferences, as is true in the case of NCSA Mosaic but may not necessarily be true for other browsers. In order to maintain a certain level of uniformity in font size mapping we divided font sizes into six different groups, each to be tagged as a different header. Table 1 shows the mapping between font sizes in ClarisWorks and their corresponding header tags in HTML. Provided that the font size representations of the different headers scale down in the HTML browser from largest font for <H1> to smallest for <H6>, the relative font sizes will look similar, if not identical, in an HTML browser and ClarisWorks. Font Size (points) 20 <20 and 18 <18 and 14 <14 and 12 <12 and 9 <9 HTML Tag <H1>...</H1> <H2>...</H2> <H3>...</H3> <H4>...</H4> <H5>...</H5> <H6>...</H6> Table 1. The table shows how the font sizes are mapped to the tags used during the export process, as well as what font sizes the tags are mapped to when importing an HTML file. In terms of font styles, the translator supports bold, italics and underline. ClarisWorks also allows strike through, outline, shadow, condensed, extended, superscript, subscript, and text colors, however, these styles do not have equivalent tags in HTML. With the exception of superscript numbers and text colors which are used by the translator as link flags and literal HTML text flags, which will be explained later in this section, the unmatched styles are ignored, and the translator treats the run as plain text. Export translation of images within documents occurs as follows. When the XTND System notifies the translator of an image during the export process, a file is created in the current folder in the Macintosh file system which is titled filename.gif, where filename is the name specified in the Save dialog by the user, then the image information is stored in the new file as a GIF image. An <IMG SRC = "filename.gif"> tag is written to the HTML export text file which is a link to filename.gif so that the image can be inlined when viewed with an HTML browser. This inline image link is generated assuming that the image file will be located in the same directory as the HTML file itself which is true during export since the translator assures this. Even though ClarisWorks does not provide a method for users to add certain media such as sound files to documents, which would be suitable in HTML, there is support for user specified links to facilitate this. We realize that there are limitations to ClarisWorks in terms of being able to display all possible types of media, but, with the ability to specify links explicitly, the user still has full control to add different media and to specify links to other HTML documents. The 'Link' macro described in The user interface section above enables users to specify links.

6 Clicking on the macro button while highlighting a selection of text to be the link text, causes the text selection to be changed to blue colored, underlined text and tagged with a superscripted footnote number. Footnote text is then created in association with the particular footnote number at the bottom of the page in ClarisWorks. Initially the footnote text is 'INSERT URL HERE.' This method is for use in specifying links to other documents on the Web by typing the Uniform Resource Locator (URL) as the footnote text. There is also functionality through the Style menu associated with the HTML Document stationery as described above, to insert literal HTML text which will not be translated, but rather echoed to the HTML export text file. A selection of text with 'Literal HTML Text' style associated with it appears in red. This can be any valid HTML text including plain text, tags, links to other resources, or anchors. This functionality makes it possible to create HTML documents in ClarisWorks which support all possible HTML tags. We based the translator on Level 1 HTML specifications, but with the literal HTML text option, any currently valid tags may be used. When importing HTML documents into ClarisWorks using the translator, the process is fairly straight forward. The text is read from the HTML file and the translator checks for valid tags. Header tags, logical and physical styles, and normal text are all handled at the time they are read. The appropriate style flags are set, and the particular styles are applied to the text read in, then passed to the application. Any list tags read are simulated with tabs in ClarisWorks since it has no built in functionality for displaying lists. If the tag read is a link to another document, it is displayed as a numbered footnote at the bottom of the page with blue link text in the body above. If the text read is a reference to an inlined image, an attempt to find the image is made. Upon a successful search, the image is inserted into the document being displayed in ClarisWorks. If the image file is not found, the link text is displayed in red. This is true for all tags which are read that are not understood by the translator. After importation, what the user sees is text with possibly different styles, footnotes denoting links if any exist, and red text displaying any information read which was not understood by the translator such as bad HTML code or unsupported tags. Use and effectiveness The XTND HTML Translator was developed to make composition of documents as easy as possible, however, some basic knowledge is required. Knowledge of the Macintosh operating system and file system structure are imperative, at least at a working knowledge level. Also assumed, is that the user is familiar with ClarisWorks for Macintosh, Claris stationery, use of macros in ClarisWorks, and ClarisWorks tools and menus. It is also important to understand how the Standard File dialogs for saving and opening documents operate. These are reasonable requirements. The group of high school students we conduct research with have all been introduced to these concepts through classroom instruction and have been able to use the HTML translator successfully. Building knowledge The method by which the translator functions is very conducive to gradually learning more about HTML documents and how to compose them. Initially, it is easy to create flat documents, that is, documents with text styles and images, but no links to other documents or resources. Without much instruction about URLs and Web navigation, users can become familiar with and start including links to other documents in their own compositions by using the provided shortcut macro in ClarisWorks. Eventually, the ability to include any HTML text will enable users to be able to go beyond the basics to incorporate other resources by specifying them in literal HTML text which is written directly to the output file without translation. This is helpful in exploring new resources supported by HTML while still being able to benefit from the simplicity of composing in a familiar, user-friendly environment. Future directions The XTND HTML Translator is currently being further developed to add even more flexibility in composing HTML documents. One such development is support for QuickTime movies. ClarisWorks does allow

7 for inclusion of QuickTime movies in documents, however this is not currently supported by the translator. Future versions will accommodate movies. As mentioned earlier, Level 1 HTML specifications [6] were used to model the current version of the translator. Since Level 2 HTML documents are proliferating and support is being added for Level 2 functionality in HTML browsers such as NCSA Mosaic, future versions of the XTND HTML Translator will also handle Level 2 compliant documents. As Level 3 HTML or HTML+ is further developed, it will be considered for support in future versions of the translator as well. We will continue testing use of the translator in the educational environment to find ways to further increase its beneficiality and ease of use. As possible improvements in the translator and the included HTML Document stationery are recognized, such changes will be implemented in subsequent releases. Conclusion Using the XTND HTML Translator greatly decreases the amount of time required to compose HTML documents while also decreasing the level of knowledge necessary to begin. It is a valuable tool for users at all levels of HTML knowledge for increasing document composition efficiency, while still allowing as much flexibility in manipulating text and images as ClarisWorks allows, and also providing a means for support of future developments in the HTML standard. It also makes simpler the task of progressing through learning different aspects of Web publishing. It is possible to publish documents on the Web with little or no knowledge of HTML, thus enabling anyone with access to a Macintosh, ClarisWorks and the XTND HTML Translator to create HTML documents. The translator allows more people to participate in the growth of the Web, and move away from being merely observers. Figure 4. This figure shows the ClarisWorks environment while editing an HTML document. Notice the link text 'HTML' in the middle of the second line of the second block of text. The URL associated with this link text is displayed at the bottom of the page as a footnote. Figure 5. This figure shows the HTML version of the same document shown in Figure 4, being viewed in Mosaic, after translation. Notice that the text HTML in the middle of the second line in the second block of text is a link to another document. The URL is the same as specified in the footnote in Figure 4.

8 Acknowledgements Recognition of the need for the translator and its application in educational curricula is due in total to Jeff Spitulnik, School of Education, University of Michigan, and Professor Elliot Soloway, Professor of Electrical Engineering and Computer Science, Professor of Education, University of Michigan. Sean DeMonner, School of Education, University of Michigan, collected data and instructed a group of high school students about how to use Mosaic, what the World-Wide Web is, and how to use the XTND HTML Translator to compose documents to be viewed in Mosaic. Mike Farr, formerly of Claris Corporation, now with Helios, gave us help in resolving several issues during the development process. Kathy Brade, University of Michigan, supplied information on Macintosh Toolbox routines. The entire HI-C Group gave us hardware and software support during development of the translator. Special thanks to the Community High School students who tested the translator in its very early stages. References Software Development Group, National Center for Supercomputing Applications, NCSA Mosaic for Macintosh User's Guide Version 1.0, University of Illinois at Urbana-Champaign, Champaign, IL, National Center for Supercomputing Applications, A Beginner's Guide to HTML, University of Illinois at Urbana- Champaign, URL: Developer Technical Publications, XTND Programmer's Guide For XTND 1.3 version 1.3, Apple Computer, Inc., Cupertino, CA, Claris Corporation, ClarisWorks for Macintosh Handbook, Claris Corporation, Santa Clara, CA, Apple Computer, Inc., Macintosh Human Interface Guidelines (Apple Technical Library), Addison-Wesley, New York, Berners-Lee, Tim and Connolly, Dan, A specification in hypertext, CERN, Geneva, Switzerland, URL: Authors Jonathan Ryan Day is a senior undergraduate Computer Science student at the University of Michigan. He has worked with the University of Michigan Libraries Recon group maintaining data integrity in the on-line catalog searching system. He has also worked with Learning Center, Ltd, a computer networking and service company, developing in-house applications. Recently, he has been working with the Highly Interactive Computing group at the University of Michigan on several research projects. Brian Sullivan is a senior undergraduate Computer Engineering student at the University of Michigan. He has worked with Chase Manhattan Bank as a systems engineer, at Northern Telecom as a system administrator, and the Computer Aided Engineering Network (University of Michigan) as a network specialist. Recently, he has been working with the Highly Interactive Computing group at the University of Michigan on several research projects. Jeff Spitulnik is a doctoral student in the School of Education, University of Michigan. He has been one of the primary links in the project involving the University of Michigan School of Education, the Highly Interactive Computing group, and Community High School, Ann Arbor, MI. Elliot Soloway is a Professor in the Department of Electrical Engineering and Computer Science, College of Engineering, University of Michigan. He is also an Associate Professor in the School of Education. Previously he was an Associate Professor at Yale University, Department of Computer Science. His area of research is

9 currently interactive learning environments. In particular, he is concerned with how learners of all ages will routinely manipulate computational media in pursuit of their learning and workplace goals. Soloway's research group has produced MediaText, a multimedia composition environment, that is available commercially and is being used in hundreds of classrooms around the country. Soloway is Editor-in-Chief of the Interactive Learning Environments journal, published by Ablex, Inc. He was a Keynote Speaker at the ACM Conference on Computer- Human Interfaces in 1989, and has given numerous tutorials and presentations at other CHI conferences.

Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP. 1. How does it all work? 2. What do I need to get started at Fairfield?

Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP. 1. How does it all work? 2. What do I need to get started at Fairfield? Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP 1. How does it all work? 2. What do I need to get started at Fairfield? 3. What is HTML coding? 4. The 10 HTML Tags that you should know.

More information

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

FCKEditor v1.0 Basic Formatting Create Links Insert Tables FCKEditor v1.0 This document goes over the functionality and features of FCKEditor. This editor allows you to easily create XHTML compliant code for your web pages in Site Builder Toolkit v2.3 and higher.

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

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Chapter 1 Introduction to HTML, XHTML, and CSS

Chapter 1 Introduction to HTML, XHTML, and CSS Chapter 1 Introduction to HTML, XHTML, and CSS MULTIPLE CHOICE 1. The world s largest network is. a. the Internet c. Newsnet b. the World Wide Web d. both A and B A PTS: 1 REF: HTML 2 2. ISPs utilize data

More information

Contents. Launching Word

Contents. Launching Word Using Microsoft Office 2007 Introduction to Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Winter 2009 Contents Launching Word 2007... 3 Working with

More information

Publishing Electronic Portfolios using Adobe Acrobat 5.0

Publishing Electronic Portfolios using Adobe Acrobat 5.0 Step-by-Step Publishing Electronic Portfolios using Adobe Acrobat 5.0 2002, Helen C. Barrett Here is the process we will use to publish a digital portfolio using Adobe Acrobat. The portfolio will include

More information

Glossary. advance: to move forward

Glossary. advance: to move forward Computer Computer Skills Glossary Skills Glossary advance: to move forward alignment tab: the tab in the Format Cells dialog box that allows you to choose how the data in the cells will be aligned (left,

More information

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved.

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved. 4D Write User Reference Mac OS and Windows Versions 4D Write 1999-2002 4D SA/4D, Inc. All Rights reserved. 4D Write User Reference Version 6.8 for Mac OS and Windows Copyright 1999 2002 4D SA/4D, Inc.

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6 Content Author's Reference and Cookbook Rev. 080627 Sitecore CMS 6 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents Chapter

More information

National Training and Education Resource. Authoring Course. Participant Guide

National Training and Education Resource. Authoring Course. Participant Guide National Training and Education Resource Authoring Course Participant Guide Table of Contents: OBJECTIVES... 4 OVERVIEW OF NTER... 5 System Requirements... 5 NTER Capabilities... 6 What is the SCORM PlayerWhat

More information

OpenMind 2 New Document Open Document Mind Map Top Down Left Right Top Down Left Right Timeline Timeline Outline

OpenMind 2 New Document Open Document Mind Map Top Down Left Right Top Down Left Right Timeline Timeline Outline OpenMind 2 Choose New Document to create a new document, or Open Document to open a previously created document, including templates. OpenMind provides numerous curriculum-aligned templates for Language

More information

Introduction to web development and HTML MGMT 230 LAB

Introduction to web development and HTML MGMT 230 LAB Introduction to web development and HTML MGMT 230 LAB After this lab you will be able to... Understand the VIU network and web server environment and how to access it Save files to your web folder for

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Developing a Basic Web Page

Developing a Basic Web Page Developing a Basic Web Page Creating a Web Page for Stephen Dubé s Chemistry Classes 1 Objectives Review the history of the Web, the Internet, and HTML Describe different HTML standards and specifications

More information

m At Ease 3.0 or later (earlier versions of At Ease are not supported)

m At Ease 3.0 or later (earlier versions of At Ease are not supported) 1 Getting Started The emate Classroom Exchange software allows you to connect one or several emates to a Mac OS computer and transfer information between the emate devices and the computer simultaneously.

More information

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore.

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. Title Search strategies and information resources Author(s) Sommerville, Joseph Citation Sommerville, J. (1998).

More information

CREATING ANNOUNCEMENTS. A guide to submitting announcements in the UAFS Content Management System

CREATING ANNOUNCEMENTS. A guide to submitting announcements in the UAFS Content Management System CREATING ANNOUNCEMENTS A guide to submitting announcements in the UAFS Content Management System Fall 2017 GETTING STARTED 1 First, go to news.uafs.edu. 2 Next, click Admin at the bottom of the page. NOTE:

More information

Cascading Style Sheets - Designing for the Web

Cascading Style Sheets - Designing for the Web Cascading Style Sheets - Designing for the Web Page 1 of 11 Cascading Style Sheets DESIGNING FOR THE WEB Third Edition SAMPLE DOCUMENT Page 2 of 11 Page 3 of 11 Cascading Style Sheets DESIGNING FOR THE

More information

page 1 OU Campus User Guide

page 1 OU Campus User Guide page 1 OU Campus User Guide Logging Into OU Campus page page 2 1. Navigate to a page on your site that you wish to edit. 2. Scroll down to the footer and click the symbol. 3. Enter your OU Campus username

More information

A Guided Tour of Doc-To-Help

A Guided Tour of Doc-To-Help A Guided Tour of Doc-To-Help ii Table of Contents Table of Contents...ii A Guided Tour of Doc-To-Help... 1 Converting Projects to Doc-To-Help 2005... 1 Using Microsoft Word... 10 Using HTML Source Documents...

More information

From administrivia to what really matters

From administrivia to what really matters From administrivia to what really matters Questions about the syllabus? Logistics Daily lectures, quizzes and labs Two exams and one long project My teaching philosophy...... is informed by my passion

More information

Quark XML Author September 2016 Update for Platform with Business Documents

Quark XML Author September 2016 Update for Platform with Business Documents Quark XML Author 05 - September 06 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository... Creating a new document from

More information

CA Productivity Accelerator 12.1 and Later

CA Productivity Accelerator 12.1 and Later CA Productivity Accelerator 12.1 and Later Localize Content Localize Content Once you have created content in one language, you might want to translate it into one or more different languages. The Developer

More information

Best Practices for Using the Rich Text Editor

Best Practices for Using the Rich Text Editor Best Practices for Using the Rich Text Editor Overview Many pages in ilearn contain large text entry boxes along with many icons and pull down lists (located above the actual text entry area). These icons

More information

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4 Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML 4.01 Version: 4.01 Transitional Hypertext Markup Language is the coding behind web publishing. In this tutorial, basic knowledge of HTML will be covered

More information

Creating a Course Web Site

Creating a Course Web Site Creating a Course Web Site What you will do: Use Web templates Use shared borders for navigation Apply themes As an educator or administrator, you are always looking for new and exciting ways to communicate

More information

Integration of Handwriting Recognition in Butterfly Net

Integration of Handwriting Recognition in Butterfly Net Integration of Handwriting Recognition in Butterfly Net Sye-Min Christina Chan Department of Computer Science Stanford University Stanford, CA 94305 USA sychan@stanford.edu Abstract ButterflyNet allows

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

Best Practices for Using the Rich Text Editor

Best Practices for Using the Rich Text Editor Best Practices for Using the Rich Text Editor Overview Many pages in Sakai contain large text-entry boxes along with many icons and pull-down lists (located above the actual text entry area). These icons

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

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

Quark XML Author for FileNet 2.5 with BusDocs Guide

Quark XML Author for FileNet 2.5 with BusDocs Guide Quark XML Author for FileNet 2.5 with BusDocs Guide CONTENTS Contents Getting started...6 About Quark XML Author...6 System setup and preferences...8 Logging in to the repository...8 Specifying the location

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

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template

Word Getting Started The Word Window u vw. Microsoft QUICK Source. Creating a New Blank Document. Creating a New Document from a Template Microsoft QUICK Source Word 2007 Getting Started The Word Window u vw x y z u Quick Access Toolbar contains shortcuts for the most commonly used tools. v Microsoft Office Button contains common file and

More information

Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA

Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA Achieving Contentment with the AutoCAD Architecture Content Browser Douglas Bowers, AIA AB110-3 If you have created AutoCAD Architecture (formerly ADT) object styles and want to know how to easily share

More information

AppleWorks 5 Installation Manual. Includes information about new features FOR MAC OS

AppleWorks 5 Installation Manual. Includes information about new features FOR MAC OS apple AppleWorks 5 Installation Manual Includes information about new features FOR MAC OS K Apple Computer, Inc. 1998 Apple Computer, Inc. All rights reserved. Under the copyright laws, this manual may

More information

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Intro to FrontPage OVERVIEW: This handout provides a general overview of Microsoft FrontPage. AUDIENCE: All Instructional

More information

06 Browsing the Internet with Firefox

06 Browsing the Internet with Firefox 06 Browsing the Internet with Firefox Before starting on the exercise some explanations. Note these are simplified as the intention is to to help with using and exploiting the internet. You will come across

More information

Dreamweaver MX 2004 Introduction

Dreamweaver MX 2004 Introduction Dreamweaver MX 2004 Introduction A Workshop for San Diego State University Faculty and Staff 2004. San Diego State University. All Rights Reserved Sponsored by Academic Affairs Where to Find Help When

More information

Creating Accessible Microsoft Word 2003 Documents Table of Contents

Creating Accessible Microsoft Word 2003 Documents Table of Contents Table of Contents Creating Accessible Microsoft Word Documents...1 Introduction...2 Templates...2 Default Settings...2 Set the Language...2 Change Default Settings...2 To change the default Font:...2 To

More information

Creating a Web Presentation

Creating a Web Presentation LESSON 9 Creating a Web Presentation 9.1 After completing this lesson, you will be able to: Create an agenda slide or home page. Create a hyperlink to a slide. Create a Web presentation with the AutoContent

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

Quark XML Author October 2017 Update for Platform with Business Documents

Quark XML Author October 2017 Update for Platform with Business Documents Quark XML Author 05 - October 07 Update for Platform with Business Documents Contents Getting started... About Quark XML Author... Working with the Platform repository...3 Creating a new document from

More information

Site Owners: Cascade Basics. May 2017

Site Owners: Cascade Basics. May 2017 Site Owners: Cascade Basics May 2017 Page 2 Logging In & Your Site Logging In Open a browser and enter the following URL (or click this link): http://mordac.itcs.northwestern.edu/ OR http://www.northwestern.edu/cms/

More information

Using the emate Connectivity CD

Using the emate Connectivity CD Using the emate Connectivity CD This CD contains software you can use with your Apple emate 300. It also contains backup copies of some of the software that was pre-installed on your emate. The documentation

More information

ibooks Author: An Instructional Guide for Educators

ibooks Author: An Instructional Guide for Educators USING IBOOKS AUTHOR ibooks Author: An Instructional Guide for Educators ETEC533 - MANNY LOYLA SECTION 1 Before you Begin This section provides information on how to download and install the ibooks Author

More information

Working with Confluence Pages

Working with Confluence Pages Working with Confluence Pages Contents Creating Content... 3 Creating a Page... 3 The Add Page Link... 3 Clicking on an Undefined Link... 4 Putting Content on the Page... 4 Wiki Markup... 4 Rich Text Editor...

More information

Using the Web in Mathematics Foundations Course An Introduction to Microsoft PowerPoint Sarah L. Mabrouk, Framingham State College

Using the Web in Mathematics Foundations Course An Introduction to Microsoft PowerPoint Sarah L. Mabrouk, Framingham State College Using the Web in Mathematics Foundations Course An Introduction to Microsoft PowerPoint Sarah L. Mabrouk, Framingham State College Overview: MS PowerPoint is powerful presentation software that enables

More information

Objectives. Introduction to HTML. Objectives. Objectives

Objectives. Introduction to HTML. Objectives. Objectives Objectives Introduction to HTML Developing a Basic Web Page Review the history of the Web, the Internet, and HTML. Describe different HTML standards and specifications. Learn about the basic syntax of

More information

Tutorials. Lesson 3 Work with Text

Tutorials. Lesson 3 Work with Text In this lesson you will learn how to: Add a border and shadow to the title. Add a block of freeform text. Customize freeform text. Tutorials Display dates with symbols. Annotate a symbol using symbol text.

More information

Using the Inbox to Manage Messages

Using the Inbox to Manage Messages 6 Using the Inbox to Manage Messages You can use the Outlook Inbox folder as well as the other mail-item folders (Drafts, Outbox, and Sent Items) to receive, send, and manage email, and send fax messages.

More information

Formatting a Table of Contents Using Word 2013

Formatting a Table of Contents Using Word 2013 Formatting a Table of Contents Using Word 2013 An East Carolina University Guide for Electronic Theses and Dissertations This document intends to provide a step by step guide for formatting a table of

More information

Using a Homegrown Courseroom System with Off-Line, Multimedia Capabilities Designed with Lotus Notes

Using a Homegrown Courseroom System with Off-Line, Multimedia Capabilities Designed with Lotus Notes Using a Homegrown Courseroom System with Off-Line, Multimedia Capabilities Designed with Lotus Notes Seung Youn (Yonnie) Chyung, Assistant Professor Department of Instructional & Performance Technology

More information

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat The American University in Cairo Academic Computing Services Word 2000 prepared by Soumaia Ahmed Al Ayyat Spring 2001 Table of Contents: Opening the Word Program Creating, Opening, and Saving Documents

More information

EKTRON 101: THE BASICS

EKTRON 101: THE BASICS EKTRON 101: THE BASICS Table of Contents INTRODUCTION... 2 TERMINOLOGY... 2 WHY DO SOME PAGES LOOK DIFFERENT THAN OTHERS?... 5 LOGGING IN... 8 Choosing an edit mode... 10 Edit in context mode (easy editing)...

More information

WCMS Designing Content

WCMS Designing Content WCMS Designing Content WCMS Redesign Series: Part II FINAL California State University, Bakersfield Last modified 7/15/2014 Page 2 REVISION CONTROL Document Title: Author: File Reference: CT055 WCMS -

More information

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

unformatted text: this is also known as plaintext and enables pages to be created which comprise strings of fixed-

unformatted text: this is also known as plaintext and enables pages to be created which comprise strings of fixed- TEXT REPRESNTATION unformatted text: this is also known as plaintext and enables pages to be created which comprise strings of fixed- sized characters from a limited character set; formatted text: this

More information

Guide to Completing Your Senior English and Government Portfolios

Guide to Completing Your Senior English and Government Portfolios Sheridan High School s Guide to Completing Your Senior English and Government Portfolios Written by: Dave Burkhart Updated: August 24, 2014 2 Clicking on a topic or a page number will automatically take

More information

Learn about PowerPoint: Create your first presentation

Learn about PowerPoint: Create your first presentation Learn about PowerPoint: Create your first presentation In this tutorial, you will create a simple presentation to learn the skills basic to working with all presentations. Step 1: Get started Open PowerPoint

More information

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x

ImageNow eforms. Getting Started Guide. ImageNow Version: 6.7. x ImageNow eforms Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: September 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Microsoft Office Word. Part1

Microsoft Office Word. Part1 Microsoft Office 2010 - Word Part1 1 Table of Contents What is Microsoft Word?... 4 Creating a document... 5 Toolbar... 6 Typing in MS Word Text Area... 7 Cut, Copy and Paste Text... 9 Paste Preview...

More information

Basic Computer Skills: An Overview

Basic Computer Skills: An Overview Basic Computer Skills: An Overview Proficiency in the use of computers and common software packages is essential to completing technical tasks and in communicating results. The basic skills required include:

More information

Quark XML Author for FileNet 2.8 with BusDocs Guide

Quark XML Author for FileNet 2.8 with BusDocs Guide Quark XML Author for FileNet.8 with BusDocs Guide Contents Getting started... About Quark XML Author... System setup and preferences... Logging on to the repository... Specifying the location of checked-out

More information

KENDRIYA VIDYALAYA MAHASAMUND

KENDRIYA VIDYALAYA MAHASAMUND क न द र य व द य लय मह सम द KENDRIYA VIDYALAYA MAHASAMUND MAHASAMUND (C.G.)493445 Session-2017. Unit-I Basic Of Information Technology What is Basic of IT- Information technology (IT) is the application

More information

This book will help you quickly create your first documents, spreadsheets, and slideshows.

This book will help you quickly create your first documents, spreadsheets, and slideshows. Getting Started Welcome to iwork 08 Preface This book will help you quickly create your first documents, spreadsheets, and slideshows. iwork 08 includes three applications that integrate seamlessly with

More information

Creating Booklets Using Microsoft Word 2013 on a PC

Creating Booklets Using Microsoft Word 2013 on a PC Creating Booklets Using Microsoft Word 2013 on a PC Booklets are a great way to collect information and graphic samples and format them in a user-friendly publication to share with others. Examples: Collect

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

Inspiration Quick Start Tutorial

Inspiration Quick Start Tutorial Inspiration Quick Start Tutorial 1 Inspiration Quick Start Tutorial This tutorial is a great starting point for learning how to use Inspiration. Please plan on about 45 minutes from start to finish. If

More information

LMS User Guide Release 2018 May 2017

LMS User Guide Release 2018 May 2017 LMS User Guide Release 2018 May 2017 LMSUG-051516 The Edupoint software and any form of supporting documentation are proprietary and confidential. Unauthorized reproduction or distribution of the software

More information

ECDL Module 6 REFERENCE MANUAL

ECDL Module 6 REFERENCE MANUAL ECDL Module 6 REFERENCE MANUAL Presentation Microsoft PowerPoint XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 6 (USING POWERPOINT XP) - MANUAL 6.1 GETTING STARTED... 4 6.1.1 FIRST STEPS WITH

More information

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button.

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button. Microsoft QUICK Word 2010 Source Getting Started The Word Window u v w x z Opening a Document 2. Select Open in the left pane. 3. In the Open dialog box, locate and select the file you want to open. 4.

More information

Microsoft Word 2010 Part 1: Introduction to Word

Microsoft Word 2010 Part 1: Introduction to Word CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Word 2010 Part 1: Introduction to Word Summer 2011, Version 1.0 Table of Contents Introduction...3 Starting the Program...3

More information

MRK260. Week Two. Graphic and Web Design

MRK260. Week Two. Graphic and Web Design MRK260 Week Two Graphic and Web Design This weeks topics BASIC HTML AND CSS MRK260 - Graphic & Web Design - Week Two 2 Lesson Summary What is HTML? Introduction to HTML Basics Introduction to CSS Introduction

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Figure 1 Properties panel, HTML mode

Figure 1 Properties panel, HTML mode How to add text Adding text to a document To add text to a Dreamweaver document, you can type text directly in the Document window, or you can cut and paste text. You modify text by using the Properties

More information

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage Microsoft FrontPage Unit 8 Microsoft FrontPage Introduction Lesson 8.1 Microsoft FrontPage-1 A number of Software Packages are available in market for creating a website. Among popular software s are Dreamweaver,

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

Using WebBoard at UIS

Using WebBoard at UIS Using WebBoard at UIS Accessing your WebBoard Course...3 Logging in to WebBoard...3 Understanding the WebBoard Environment...4 The Menubar...5 The Conferences Menu...5 Conferences...5 Topics...6 Messages

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

USER GUIDE. MADCAP FLARE 2017 r3. Import

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

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

Solo 4.6 Release Notes

Solo 4.6 Release Notes June9, 2017 (Updated to include Solo 4.6.4 changes) Solo 4.6 Release Notes This release contains a number of new features, as well as enhancements to the user interface and overall performance. Together

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

LMS User Guide Release December 2017

LMS User Guide Release December 2017 LMS User Guide Release 2018.01 December 2017 LMSUG-051516 The Edupoint software and any form of supporting documentation are proprietary and confidential. Unauthorized reproduction or distribution of the

More information

Be a Digital MixMaster

Be a Digital MixMaster Be a Digital MixMaster Passport to Learning Summer Professional Development Conference August 16, 2012 Humble High School Presented by: Instructional Technology Introduction Adding technology resources

More information

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account.

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account. Microsoft Office 365 Contents What is Office 365?... 2 What is OneDrive?... 2 What if you already have a Microsoft Account?... 2 Download Office for FREE... 3 How to Access OneDrive... 4 Office Online...

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

Blackboard 5. Instructor Manual Level One Release 5.5

Blackboard 5. Instructor Manual Level One Release 5.5 Bringing Education Online Blackboard 5 Instructor Manual Level One Release 5.5 Copyright 2001 by Blackboard Inc. All rights reserved. No part of the contents of this manual may be reproduced or transmitted

More information

Resetting Your Password

Resetting Your Password School Teacher Page Training Logging In Before you can add or edit content, you need to log in. The web site address is: http://www.okaloosaschools.com/yourschool/user Enter your user name and password

More information

Java WYSIWYG Editor Info

Java WYSIWYG Editor Info If You Experience Problems Java WYSIWYG Editor Info 1. If you are unable to save changes to your data, or 2. If the WYSIWYG editor is not working, then please follow the steps given in the System Requirements

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

PowerPoint 2002 Manual

PowerPoint 2002 Manual PowerPoint 2002 Manual Internet and Technology Training Services Miami-Dade County Public Schools Contents How to Design Your Presentation...3 PowerPoint Templates...6 Formatting Your Slide Show...7 Creating

More information

APPENDIX THE TOOLBAR. File Functions

APPENDIX THE TOOLBAR. File Functions APPENDIX THE TOOLBAR Within the WYSIWYG editor, there are a variety of functions available to the user to properly update the page. Below is a list of all the functions available. Keep in mind that the

More information

Introduction: History of HTML & XHTML

Introduction: History of HTML & XHTML Introduction: History of HTML & XHTML College of Computing & Information Technology King Abdulaziz University CPCS-665 Internet Technology Objectives Learn the history of the Web and HTML Understand HTML

More information

Tennessee. Trade & Industrial Course Web Page Design II - Site Designer Standards. A Guide to Web Development Using Adobe Dreamweaver CS3 2009

Tennessee. Trade & Industrial Course Web Page Design II - Site Designer Standards. A Guide to Web Development Using Adobe Dreamweaver CS3 2009 Tennessee Trade & Industrial Course 655745 Web Page Design II - Site Designer Standards A Guide to Web Development Using Adobe Dreamweaver CS3 2009 ation Key SE Student Edition LE Learning Expectation

More information

Using PowerPoint 2011 at Kennesaw State University

Using PowerPoint 2011 at Kennesaw State University Using PowerPoint 2011 at Kennesaw State University Creating Presentations Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 - Information Technology Services Kennesaw

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information