Documentation of the UJAC print module's XML tag set.

Size: px
Start display at page:

Download "Documentation of the UJAC print module's XML tag set."

Transcription

1 Documentation of the UJAC print module's XML tag set. <b> tag Changes the document font by adding the 'bold' attribute to the current font. <barcode> tag Prints a barcode. type: The barcode type, supported values are: CODABAR, CODE39, CODE39EXT, INTER25, CODE128, CODE128_UCC, EAN8, PLANET, POSTNET, SUPP2, SUPP5, UPCA, UPCE. bar-width: The width of one single bar. bar-height: The height of a bar. bar-color: The bar color. text-color: The color of the text below the bar. rotate: The rotation flag. start-stop-text: The start-stop text generate-checksum: The flag deciding, whether to generate a checksum or not. baseline: If positive the text distance above the bars, if negative, the text distance below the bars. <br> tag Adds a linefeed to its parent item. <case> tag Conditional item, which evalutes its content in case the given value matches the value of the surrounding 'switch' tag. value: The value to be checked against the value of the surrounding switch item. font-def, font, i, u, b, case, foreach, default, print-table, else, if, cell, table, table-header, phrase, paragraph, footer, header, chart, set-format, resource-bundle Document tag documentation Page 1 of 11

2 <cell> tag Adds a cell to its surrounding table or surrounding cell. bgcolor: The cell's background color. colspan: The column span of the cell. border-style: The cell's border style (none left right top bottom box). border-width: The cell's border width. border-color: The cell's border color. halign: The cell's horizontal alignment. valign: The cell's vertical alignment. padding: The padding for all border edges. padding-left: The left padding. padding-right: The right padding. padding-top: The top padding. padding-bottom: The bottom padding. no-wrap: The no wrap flag. font, i, u, b, case, foreach, default, print-table, else, if, phrase, paragraph, cell, table, chart <cell-block> tag Declares a range of cells which have to be printed at once, If this block doesn't fit into the current page, a new page is stated before printing the block. bgcolor: Defines the default background color for the nested cells. border-style: Defines the default border type for the nested cells. border-width: Defines the default border width for the nested cells. border-color: Defines the default border color for the nested cells. padding: Defines the default padding for the nested cells. padding-left: Defines the default left padding for the nested cells. padding-right: Defines the default right padding for the nested cells. padding-top: Defines the default top padding for the nested cells. padding-bottom: Defines the default bottom padding for the nested cells. font, i, u, b, case, foreach, default, print-table, else, if, cell Document tag documentation Page 2 of 11

3 <cell-style> tag Specifies the style of cells for a specific row within the surrounding print-row tag. name: The name of the column to define the attributes for. bgcolor: The cell's background color. colspan: The column span of the cell. border-style: The cell's border style (none left right top bottom box). border-width: The cell's border width. border-color: The cell's border color. halign: The cell's horizontal alignment. valign: The cell's vertical alignment. padding: The padding for all border edges. padding-left: The left padding. padding-right: The right padding. padding-top: The top padding. padding-bottom: The bottom padding. no-wrap: The no wrap flag. font-def: The font definition name (see font-def item). <chart> tag Places a chart into the document. title: The title of the chart. title-font: The font to use for the chart title rendering. type: The chart type, currently supported types are 'line' and 'bar'. x: The absolute horizontal position. y: The absolute vertical position. width: The width of the chart's area. height: The height of the chart's area. halign: The horizontal alignment, valid values are left, right and center. valign: The vertical alignment, valid values are top, bottom and middle. padding: The padding for all border edges. padding-left: The left padding. padding-right: The right padding. padding-top: The top padding. padding-bottom: The bottom padding. <date-format> tag Formats the given value using the specified number format. The given number format must be specified according to the specifications of the SDK class java.text.decimalformat. format: The format string according to the definition of class java.text.decimalformat. value: The value to be formatted Document tag documentation Page 3 of 11

4 <default> tag Conditional item, which evalutes its content in case no occurred 'case' item matched the value of the surrounding 'switch' tag so far. font-def, font, i, u, b, case, foreach, default, print-table, else, if, cell, table, table-header, phrase, paragraph, footer, header, chart, set-format, resource-bundle <document> tag Root element of the document. size: The page size (LETTER NOTE LEGAL A0 A1 A2 A3 A4 A5 A6 A7 A8 A9 A10 B0 B1 B2 B3 B4 B5). width: The page-width can be used alternatively together with page-height to define a custom document size. height: The page-height can be used alternatively together with page-width to define a custom document size. rotate: The rotation flag, if true the page gets rotated 90 degrees clockwise. margin-left: The left margin. margin-right: The right margin. margin-top: The top margin. margin-bottom: The bottom margin. bgcolor: The background color. footer, header, font, i, u, b, font-def, case, foreach, default, print-table, else, if, phrase, paragraph, table, chart, set-format, resource-bundle <else> tag Conditional item, which evalutes its content in case a previous if tag's condition didn't evaluate to true. font-def, font, i, u, b, case, foreach, default, print-table, else, if, cell, table, table-header, phrase, paragraph, footer, header, chart, set-format, resource-bundle <font> tag Sets the current font for the document. You can either hardcode a font here, or use a predefined font definition (see 'font-def' item). font-def: The font definition name, use this in case you want to make use of predefined fonts (see font-def item). color: The font color. family: The font family. size: The font size. style: The font style. case, foreach, default, print-table, else, if, font, i, u, b, cell, table, table-header, phrase, paragraph, footer, header Document tag documentation Page 4 of 11

5 <font-def> tag Defines a font for the document, this item can be useful, if a font is used several times defined fonts can be uses by the font tag, specifying its 'font-def' attribute. name: The name of the font definition. color: The font color. family: The font family. size: The font size. style: The font style. <footer> tag Defines the footer for the document. footer-part <footer-part> tag Defines a part of the surrounding footer. bgcolor: The background color. border-style: The border style. border-width: The border width. border-color: The border color. halign: The horizontal alignment. padding-top: The padding to the top border. font, i, u, b, number-format, date-format <foreach> tag Executes the nested items for each occurrence of the specified sequence. Sequences can be everything that provides an iterator method serving an Iterator instance. loop-variable: The loop variable, holds the current value from the specified sequence. sequence: An expression evaluating to a valid sequence. Valid sequences are objects of each type that implement a public method called 'iterator()' which serves an instance that implements the interface java.util.iterator. font-def, font, i, u, b, case, foreach, default, print-table, else, if, cell, table, table-header, phrase, paragraph, footer, header, chart, set-format, resource-bundle <header> tag Defines the header for the document. header-part Document tag documentation Page 5 of 11

6 <header-part> tag Defines a part of the surrounding header. bgcolor: The background color. border-style: The border style. border-width: The border width. border-color: The border color. halign: The horizontal alignment. padding-bottom: The padding to the bottom border. font, i, u, b, number-format, date-format <i> tag Changes the document font by adding the 'italic' attribute to the current font. <if> tag Conditional item, which evalutes its content in case the specified condition evaluates to true. cond: The conditional expression, accoding to the definition of classorg.ujac.util.exi.expressioninterpreter. font-def, font, i, u, b, case, foreach, default, print-table, else, if, cell, table, table-header, phrase, paragraph, footer, header, chart, set-format, resource-bundle <image> tag Inserts a image into the document. Images may be places absolutely on the page or relative to its parent item. The image gets loaded by the resource loader, which is specified at the document handler. x: The horizontal position, only needed for absolute positioning. y: The vertical position, only needed for absolute positioning. width: The image width, if no height is given, the image height is scaled with the same factor to keep the image proportions. height: The image height, if no width is given, the image width is scaled with the same factor to keep the image proportions. rotate: The image rotation angle. source: The image source. <import> tag Imports a document part from an external source, this document gets loaded by the resource loader, which is specified at the document handler. source: The location of the document to import. This document is loaded using the ResourceLoader, specified at the DocumentHandler. Document tag documentation Page 6 of 11

7 <item> tag Adds values to the surrounding item holder. Known item holders tags are: parameter. <macro> tag Uses a document macro, this macro must have been specified previously by a 'macro-def' item. name: The name of the macro definition to use. parameter <macro-def> tag Defines a document macro block. This macro can be used in serveral parts of the document using the 'macro' item. name: The name of the macro to define. parameter-def, item, table, footer, footer-part, case, chart, foreach, import, font, i, phrase, u, resource-bundle, new-page, date-format, image, outline, barcode, parameter, switch, cell, macro-def, header, parameter-def, default, number-format, print-table, paragraph, b, space, set-property, table-split, cell-block, macro, else, cell-style, table-header, print-row, if, br, fontdef, set-format, header-part <new-page> tag Starts a new page. case, foreach, default, print-table, else, if, footer, header <number-format> tag Formats the given value using the specified number format. The given number format must be specified according to the specifications of the SDK class java.text.decimalformat. format: The format string according to the definition of class java.text.decimalformat. value: The value to be formatted <outline> tag Adds a outline to the document. <paragraph> tag Adds a paragraph to its parent item. leading: The vertically leading distance. Document tag documentation Page 7 of 11

8 <parameter> tag Adds a parameter to its surrounding parameter holder.this could be a macro for example. There must be a according parameter definition for each parameter. The parameter value is determined from the item's body. name: The name of the paremeter. item <parameter-def> tag Adds a parameter definition to its surrounding parameter definition holder.this could be a macro definition for example. name: The name of the paremeter. list: The list flag. optional: The optional flag. default-value: The default value, this only makes sense if the optional flag is defined as 'true'. type: The attribute type, valid types are: int(eger), float, long, double, date, string (or text) and object <phrase> tag Adds a phrase to its parent item. leading: The vertically leading distance. <print-row> tag Prints the given table row. bgcolor: The cell's background color. border-style: The cell's border style (none left right top bottom box). border-width: The cell's border width. border-color: The cell's border color. valign: The cell's vertical alignment. padding: The padding for all border edges. padding-left: The left padding. padding-right: The right padding. padding-top: The top padding. padding-bottom: The bottom padding. no-wrap: The no wrap flag. font-def: The font definition name (see font-def item). cell-style Document tag documentation Page 8 of 11

9 <print-table> tag Executes the nested items for each row of the specified table. Creates a table according to the column layout hints of the table. loop-variable: The loop variable, holds the current value from the specified sequence. sequence: An expression evaluating to a valid sequence. Valid sequences are objects of each type that implement a public method called 'iterator()' which serves an instance that implements the interface java.util.iterator. width: The table widths in percent. halign: The horizontal alignment of the table. bgcolor: The cell's background color. border-style: The cell's border style (none left right top bottom box). border-width: The cell's border width. border-color: The cell's border color. valign: The cell's vertical alignment. padding: The padding for all border edges. padding-left: The left padding. padding-right: The right padding. padding-top: The top padding. padding-bottom: The bottom padding. no-wrap: The no wrap flag. print-header: Tells whether to print the header row or not. font, i, u, b, font, i, u, b, case, foreach, default, print-table, else, if, cell, print-row, tableheader <resource-bundle> tag Loads a localized resource bundle through the resource loader. name: The name of the resource bundle. source: The location of the resource bundle at the resource loader. <set-format> tag Defines the output format for the given data type. type: The type for which to define the format, supported types are: int, double, Date, Time and Timestamp. format: The format for the specified type. For more info see JAVA SDK documentation for types java.text.decimalformat and java.text.simpledateformat. <set-property> tag Defines the value for a specific property. name: The name of the property to set. type: The type of the property to set, supported types are: int, long, float, double, String, Date, Time and Timestamp. value: The value to set for the property. In case of numeric or date/time values international format will be used for parsing. Document tag documentation Page 9 of 11

10 <space> tag Leading and trailing spaces are mostly killed by trimming the content, so if you like to explicitely print a certain amount of spaces into the document, you can do this by using this item. count: The amount of spaces to insert, default is 1. <switch> tag Specifies the value that nested 'case' items compare their value to. value: Expression serving the value to check against the nested case items. case, default <table> tag Adds a table to its parent item. Tables are very useful if you want to layout your document nicely. columns: The number of table columns. widths: The table widths, a comma separated list of percentual column widths. width: The table widths in percent. halign: The horizontal alignment of the table. bgcolor: Defines the default background color for the nested cells. border-style: Defines the default border type for the nested cells. border-width: Defines the default border width for the nested cells. border-color: Defines the default border color for the nested cells. padding: Defines the default padding for the nested cells. padding-left: Defines the default left padding for the nested cells. padding-right: Defines the default right padding for the nested cells. padding-top: Defines the default top padding for the nested cells. padding-bottom: Defines the default bottom padding for the nested cells. font, i, u, b, case, foreach, default, print-table, else, if, table-header, cell, table-split Document tag documentation Page 10 of 11

11 <table-header> tag Declares the header cells for the surrounding table. In case the table already contains cells, it starts a new table to make sure that only the cells defined inside its own area are repeated as header on the following pages. bgcolor: Defines the default background color for the nested cells. border-style: Defines the default border type for the nested cells. border-width: Defines the default border width for the nested cells. border-color: Defines the default border color for the nested cells. padding: Defines the default padding for the nested cells. padding-left: Defines the default left padding for the nested cells. padding-right: Defines the default right padding for the nested cells. padding-top: Defines the default top padding for the nested cells. padding-bottom: Defines the default bottom padding for the nested cells. font, i, u, b, case, foreach, default, print-table, else, if, cell <table-split> tag Splits the surrounding table. This can be useful, if you like to break up a table or want to continue the table on the next page. new-page: Flag telling whether to add a page break before continuing the table or not. keep-header: Flag telling whether to keep the currently defined header of the table or to reset the header. <u> tag Changes the document font by adding the 'underline' attribute to the current font. Document tag documentation Page 11 of 11

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP Objectives INFS 2150 / 7150 Intro to Web Development / HTML Programming Designing a Web Page with Tables Create a text table Create a table using the , , and tags Create table headers

More information

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

IMY 110 Theme 7 HTML Tables

IMY 110 Theme 7 HTML Tables IMY 110 Theme 7 HTML Tables 1. HTML Tables 1.1. Tables The HTML table model allows authors to arrange data into rows and columns of cells, just as in word processing software such as Microsoft Word. It

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE Word Tutorial 3 Creating a Multiple- Page Report COMPREHENSIVE Objectives Format headings with Quick Styles Insert a manual page break Create and edit a table Sort rows in a table Modify a table s structure

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Create a new document based on default template, other available template like: memo, fax, agenda.

Create a new document based on default template, other available template like: memo, fax, agenda. Word Processing 3 Objectives: Working with Documents Enhancing Productivity Using the Application Open, close a word processing application. Open, close documents. Create a new document based on default

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

Fall 2016 Exam Review 3 Module Test

Fall 2016 Exam Review 3 Module Test 1. What is the block of text at the bottom of the page called? Header Footer Document Area Ribbon 2. Which word processing tool can help you find synonyms to improve your word choice? Spelling and Grammar

More information

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student Welcome Please sit on alternating rows powered by lucid & no.dots.nl/student HTML && CSS Workshop Day Day two, November January 276 powered by lucid & no.dots.nl/student About the Workshop Day two: CSS

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development INFS 2150 Introduction to Web Development 3. Page Layout Design Objectives Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development Objectives INFS 2150 Introduction to Web Development 3. Page Layout Design Create a reset style sheet Explore page layout designs Center a block element Create a floating element Clear a floating layout

More information

HTML2PDF. User manual

HTML2PDF. User manual User manual Table of Contents User manual... 1 Intro... 2 Overview... 3 Element description... 3 Elements relationship... 3 System options... 4 System options Sales emails... 5 Table element setup... 6

More information

THE HITCHHIKERS GUIDE TO HTML

THE HITCHHIKERS GUIDE TO HTML THE HITCHHIKERS GUIDE TO HTML Computer Science I Designing technology solutions Mr. Barrett http://thestrategicblogger.com/ What is HTML HTML is a markup language for describing web pages HTML is used

More information

Microsoft Office Excel 2013 Courses 24 Hours

Microsoft Office Excel 2013 Courses 24 Hours Microsoft Office Excel 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Getting Started With Excel 2013 Starting Excel 2013 Selecting the Blank Worksheet Template The Excel 2013 Cell

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

Web Design and Application Development

Web Design and Application Development Yarmouk University Providing Fundamental ICT Skills for Syrian Refugees (PFISR) Web Design and Application Development Dr. Abdel-Karim Al-Tamimi altamimi@yu.edu.jo Lecture 04 A. Al-Tamimi 1 Lecture Overview

More information

Chapter 4 Creating Tables in a Web Site Using an External Style Sheet

Chapter 4 Creating Tables in a Web Site Using an External Style Sheet Chapter 4 Creating Tables in a Web Site Using an External Style Sheet MULTIPLE RESPONSE Modified Multiple Choice 1. Attributes are set relative to the elements in a table. a. line c. row b. column d. cell

More information

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS:

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS: WEBSITE PROJECT 2 PURPOSE: The purpose of this project is to begin incorporating color, graphics, and other visual elements in your webpages by implementing the HTML5 and CSS3 code discussed in chapters

More information

Chapter 4 Notes. Creating Tables in a Website

Chapter 4 Notes. Creating Tables in a Website Chapter 4 Notes Creating Tables in a Website Project for Chapter 4 Statewide Realty Web Site Chapter Objectives Define table elements Describe the steps used to plan, design, and code a table Create a

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

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Supported Word Features Version: 6.2.0 Written by: Product Knowledge, R&D Date: December 2017 Copyright 2008-2017 Hyland Software, Inc. and its affiliates. Table of Contents

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

Adding CSS to your HTML

Adding CSS to your HTML Adding CSS to your HTML Lecture 3 CGS 3066 Fall 2016 September 27, 2016 Making your document pretty CSS is used to add presentation to the HTML document. We have seen 3 ways of adding CSS. In this lecture,

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Supported Word Features Version: 6.1.x Written by: Product Knowledge, R&D Date: November 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International

More information

HTML & XHTML Tag Quick Reference

HTML & XHTML Tag Quick Reference HTML & XHTML Tag Quick Reference This reference notes some of the most commonly used HTML and XHTML tags. It is not, nor is it intended to be, a comprehensive list of available tags. Details regarding

More information

1 of 7 11/12/2009 9:29 AM

1 of 7 11/12/2009 9:29 AM 1 of 7 11/12/2009 9:29 AM Home Beginner Tutorials First Website Guide HTML Tutorial CSS Tutorial XML Tutorial Web Host Guide SQL Tutorial Advanced Tutorials Javascript Tutorial PHP Tutorial MySQL Tutorial

More information

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

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

More information

Formatting Spreadsheets in Microsoft Excel

Formatting Spreadsheets in Microsoft Excel Formatting Spreadsheets in Microsoft Excel This document provides information regarding the formatting options available in Microsoft Excel 2010. Overview of Excel Microsoft Excel 2010 is a powerful tool

More information

Eng 110, Spring Week 03 Lab02- Dreamwaver Session

Eng 110, Spring Week 03 Lab02- Dreamwaver Session Eng 110, Spring 2008 Week 03 Lab02- Dreamwaver Session Assignment Recreate the 3-page website you did last week by using Dreamweaver. You should use tables to control your layout. You should modify fonts,

More information

ADOBE 9A Adobe Dreamweaver CS4 ACE.

ADOBE 9A Adobe Dreamweaver CS4 ACE. ADOBE 9A0-090 Adobe Dreamweaver CS4 ACE http://killexams.com/exam-detail/9a0-090 ,D QUESTION: 74 You use an image throughout your Web site. You want to be able to add this image to various Web pages without

More information

Dreamweaver CS3 Concepts and Techniques

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

More information

Perceptive Document Composition

Perceptive Document Composition Perceptive Document Composition Supported Word Features PDC Version: 6.0 Written by: Product Documentation, R&D Date: August 2014 2014 Perceptive Software. All rights reserved Perceptive Software is a

More information

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week WEB DESIGNING HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments HTML - Lists HTML - Images HTML

More information

Word processing software

Word processing software Unit 351 Word processing software UAN: Level: 3 Credit value: 6 GLH: 45 Y/502/4629 Assessment type: Portfolio of Evidence or assignment (7574 ITQ Users) Relationship to NOS: Assessment requirements specified

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

CSS: The Basics CISC 282 September 20, 2014

CSS: The Basics CISC 282 September 20, 2014 CSS: The Basics CISC 282 September 20, 2014 Style Sheets System for defining a document's style Used in many contexts Desktop publishing Markup languages Cascading Style Sheets (CSS) Style sheets for HTML

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

Lesson 19 Organizing and Enhancing Worksheets

Lesson 19 Organizing and Enhancing Worksheets Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Hide, show, and freeze columns and rows. Create, rename, and delete worksheets. Change

More information

USER GUIDE MADCAP FLARE Tables

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

More information

Lecture 08. Tables in HTML. Mr. Mubashir Ali Lecturer (Dept. of Computer Science)

Lecture 08. Tables in HTML. Mr. Mubashir Ali Lecturer (Dept. of Computer Science) Lecture 08 Tables in HTML Mr. Mubashir Ali Lecturer (Dept. of dr.mubashirali1@gmail.com 1 Summary of the previous lecture Adding images to web page Using images as links Image map Adding audio and video

More information

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

More information

CSS Selectors. element selectors. .class selectors. #id selectors

CSS Selectors. element selectors. .class selectors. #id selectors CSS Selectors Patterns used to select elements to style. CSS selectors refer either to a class, an id, an HTML element, or some combination thereof, followed by a list of styling declarations. Selectors

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

General: All cells have this format by default. Numbers display as typed except that leading and trailing zeroes are deleted becomes 12.

General: All cells have this format by default. Numbers display as typed except that leading and trailing zeroes are deleted becomes 12. Home Ribbon: Formatting Tools Dialog Box Launcher: Click this symbol to open old-style dialog box giving additional options Allow text to appear on multiple lines in a cell Number Format box: Click here

More information

INDEX. Access. See Database Alignment, 21, 34, 36-37, 71, 74

INDEX. Access. See Database Alignment, 21, 34, 36-37, 71, 74 Index 235 INDEX A Access. See Database Alignment, 21, 34, 36-37, 71, 74 B Bach, Richard, 10 Backup, 6, 31, 63, 91, 123, 151, 182 Borders, 60-61, 107-8 Bricklin, Dan, 67 Buchsbaum, Herbert, 3, 4 C Caftori,

More information

Additional catalogs display. Customize text size and colors.

Additional catalogs display. Customize text size and colors. Collapsible Skin The collapsible skin option displays the catalogs and categories in a collapsible format enabling enhanced navigation on Qnet. Categories can be expanded to view all of the sub categories

More information

Table of Contents. Chapter 1

Table of Contents. Chapter 1 Table of Contents iii Table of Contents Chapter 1 Starting Excel Using an electronic spreadsheet 2 Starting Excel 2 Exploring the Start screen 4 Creating a blank workbook 4 Exploring the Excel window 5

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

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6

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

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development INFS 2150 Introduction to Web Development 6. Tables and Columns Objectives Explore the structure of a web table Create table heading and data cells Apply CSS styles to a table Create cells that span multiple

More information

MS Word Professional Document Alignment

MS Word Professional Document Alignment MS Word Professional Document Alignment Table of Contents CHARACTER VS. PARAGRAPH FORMATTING...5 Character formatting...5 Paragraph Formatting...5 USING SHOW/HIDE TO REVEAL NON-PRINTING CHARACTERS...5

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development INFS 2150 Introduction to Web Development 6. Tables and Columns Objectives Explore the structure of a web table Create table heading and data cells Apply CSS styles to a table Create cells that span multiple

More information

Page Layout Using Tables

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

More information

Learning Map Excel 2007

Learning Map Excel 2007 Learning Map Excel 2007 Our comprehensive online Excel tutorials are organized in such a way that it makes it easy to obtain guidance on specific Excel features while you are working in Excel. This structure

More information

Taking Fireworks Template and Applying it to Dreamweaver

Taking Fireworks Template and Applying it to Dreamweaver Taking Fireworks Template and Applying it to Dreamweaver Part 1: Define a New Site in Dreamweaver The first step to creating a site in Dreamweaver CS4 is to Define a New Site. The object is to recreate

More information

Use Table Styles to format an entire table. Format a table. What do you want to do? Hide All

Use Table Styles to format an entire table. Format a table. What do you want to do? Hide All Page 1 of 6 Word > Tables > Formatting tables Format a table Hide All After you create a table, Microsoft Office Word 2007 offers you many ways to format that table. If you decide to use Table Styles,

More information

A Balanced Introduction to Computer Science, 3/E

A Balanced Introduction to Computer Science, 3/E A Balanced Introduction to Computer Science, 3/E David Reed, Creighton University 2011 Pearson Prentice Hall ISBN 978-0-13-216675-1 Chapter 2 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions Text and Layout Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11 This presentation 344 345 Text in Graphics Maximum flexibility obtained by treating text as graphics and manipulating

More information

Output a HTML Table to file PDF use FPDF

Output a HTML Table to file PDF use FPDF Output a HTML Table to file PDF use FPDF Informations Class: PDFTable Author: vietcom License: Freeware Version: 1.2 (18-Nov-2004) In this class, I use class HTMLParser from Jose Solorzano and class FPDF

More information

Zen Garden. CSS Zen Garden

Zen Garden. CSS Zen Garden CSS Patrick Behr CSS HTML = content CSS = display It s important to keep them separated Less code in your HTML Easy maintenance Allows for different mediums Desktop Mobile Print Braille Zen Garden CSS

More information

Appendix D CSS Properties and Values

Appendix D CSS Properties and Values HTML Appendix D CSS Properties and Values This appendix provides a brief review of Cascading Style Sheets (CSS) concepts and terminology, and lists CSS level 1 and 2 properties and values supported by

More information

Creating a Newsletter

Creating a Newsletter Chapter 7 Creating a Newsletter In this chapter, you will learn the following to World Class standards: Setting the Margins Changing the Font and Font Size Inserting a Table Inserting a Picture Adding

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

The Importance of the CSS Box Model

The Importance of the CSS Box Model The Importance of the CSS Box Model Block Element, Border, Padding and Margin Margin is on the outside of block elements and padding is on the inside. Use margin to separate the block from things outside

More information

HTML5, CSS3, JQUERY SYLLABUS

HTML5, CSS3, JQUERY SYLLABUS HTML5, CSS3, JQUERY SYLLABUS AAvhdvchdvchdvhdh HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments

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

Spreadsheets Microsoft Office Button Ribbon

Spreadsheets Microsoft Office Button Ribbon Getting started with Excel 2007 you will notice that there are many similar features to previous versions. You will also notice that there are many new features that you ll be able to utilize. There are

More information

Styles, Style Sheets, the Box Model and Liquid Layout

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

More information

Table Basics. The structure of an table

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

More information

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

Spring Semester Study Guide

Spring Semester Study Guide Spring Semester Study Guide 1. When you create a table in Datasheet view, Access automatically adds a field called ID as the first field in the table. 2. To undo the most recent change to a table structure,

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

TABLE OF CONTENTS. i Excel 2016 Basic

TABLE OF CONTENTS. i Excel 2016 Basic i TABLE OF CONTENTS TABLE OF CONTENTS I PREFACE VII 1 INTRODUCING EXCEL 1 1.1 Starting Excel 1 Starting Excel using the Start button in Windows 1 1.2 Screen components 2 Tooltips 3 Title bar 4 Window buttons

More information

Understanding Word Processing

Understanding Word Processing Understanding Word Processing 3.0 Introduction In this chapter you are going to learn how to create a simple memo or note or a complex and complicated multi column business document using word processing

More information

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information

Word 2016: Using Section Breaks

Word 2016: Using Section Breaks Word 2016: Using Section Breaks Section formatting allows you to apply different page layout settings within the same document. For example, you can change the following formats for each section: Margins

More information

Creating & Using Tables

Creating & Using Tables Creating & Using Tables in Microsoft Word 2000 Created by and for: Internet and Technology Training Services Office of Information Technology What is a Table? A table is a structure that is divided into

More information

Web Development & Design Foundations with HTML5

Web Development & Design Foundations with HTML5 1 Web Development & Design Foundations with HTML5 CHAPTER 8 TABLES 2 Learning Outcomes In this chapter, you will learn how to... Create a basic table with the table, table row, table header, and table

More information

HTML + CSS. ScottyLabs WDW. Overview HTML Tags CSS Properties Resources

HTML + CSS. ScottyLabs WDW. Overview HTML Tags CSS Properties Resources HTML + CSS ScottyLabs WDW OVERVIEW What are HTML and CSS? How can I use them? WHAT ARE HTML AND CSS? HTML - HyperText Markup Language Specifies webpage content hierarchy Describes rough layout of content

More information

Quick Access Toolbar. You click on it to see these options: New, Open, Save, Save As, Print, Prepare, Send, Publish and Close.

Quick Access Toolbar. You click on it to see these options: New, Open, Save, Save As, Print, Prepare, Send, Publish and Close. Opening Microsoft Word 2007 in the practical room UNIT-III 1 KNREDDY 1. Nyelvi beállítások az Office 2007-hez (Language settings for Office 2007 (not 2003)) English. 2. Double click on the Word 2007 icon

More information

Open and arrange windows This section covers items like: Opening another window on to a workbook Arranging workbook windows Hiding and show windows

Open and arrange windows This section covers items like: Opening another window on to a workbook Arranging workbook windows Hiding and show windows Level 2 Excel Viewing workbooks Open and arrange windows Opening another window on to a workbook Arranging workbook windows Hiding and show windows Split panes Split panes Freeze panes Freeze panes Change

More information

Computer Nashua Public Library Introduction to Microsoft Word 2010

Computer Nashua Public Library Introduction to Microsoft Word 2010 Microsoft Word is a word processing program you can use to write letters, resumes, reports, and more. Anything you can create with a typewriter, you can create with Word. You can make your documents more

More information

HTML-5.com itemscopehttp://data-vocabulary.org/breadcrumb<span itemprop="title">html 5</span> itemscopehttp://data-vocabulary.

HTML-5.com itemscopehttp://data-vocabulary.org/breadcrumb<span itemprop=title>html 5</span> itemscopehttp://data-vocabulary. HTML-5.com HTML-5.com is an HTML User's Guide and quick reference of HTML elements and attributes for web developers who code HTML web pages, not only for HTML 5 but for HTML coding in general, with demos

More information

Web Design and Development ACS Chapter 12. Using Tables 11/23/2017 1

Web Design and Development ACS Chapter 12. Using Tables 11/23/2017 1 Web Design and Development ACS-1809 Chapter 12 Using Tables 11/23/2017 1 Using Tables Understand the concept and uses of tables in web pages Create a basic table structure Format tables within web pages

More information

Block & Inline Elements

Block & Inline Elements Block & Inline Elements Every tag in HTML can classified as a block or inline element. > Block elements always start on a new line (Paragraph, List items, Blockquotes, Tables) > Inline elements do not

More information

Word Processing. Delete text: Allows you to erase characters, words, lines, or pages as easily as you can cross them out on paper.

Word Processing. Delete text: Allows you to erase characters, words, lines, or pages as easily as you can cross them out on paper. Word Processing Practice Of all computer applications, word processing is the most common. To perform word processing, you need a computer, a special program called a word processor, and a printer. A word

More information

The HOME Tab: Cut Copy Vertical Alignments

The HOME Tab: Cut Copy Vertical Alignments The HOME Tab: Cut Copy Vertical Alignments Text Direction Wrap Text Paste Format Painter Borders Cell Color Text Color Horizontal Alignments Merge and Center Highlighting a cell, a column, a row, or the

More information

CHRIST THE KING BOYS MATRIC HR. SEC. SCHOOL, KUMBAKONAM CHAPTER 2 TEXT FORMATTING

CHRIST THE KING BOYS MATRIC HR. SEC. SCHOOL, KUMBAKONAM CHAPTER 2 TEXT FORMATTING CHAPTER 2 TEXT FORMATTING 1. Explain how to create a Bulleted and Numbered List in Star Office Writer? One way to create a list of points or topics in a document is to create a bulleted list. A bullet

More information

Portage Northern High School Computer Applications * Microsoft Office 2010 Course Syllabus Mrs. Meyer

Portage Northern High School Computer Applications * Microsoft Office 2010 Course Syllabus Mrs. Meyer Portage Northern High School Computer Applications * Microsoft Office 2010 Course Syllabus Mrs. Meyer www.mrsmeyersmap.weebly.com Course Description This course is recommended for ALL high school students!

More information

Introduction to Microsoft Word 2008

Introduction to Microsoft Word 2008 1. Launch Microsoft Word icon in Applications > Microsoft Office 2008 (or on the Dock). 2. When the Project Gallery opens, view some of the available Word templates by clicking to expand the Groups, and

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

Microsoft Office PowerPoint 2013 Courses 24 Hours

Microsoft Office PowerPoint 2013 Courses 24 Hours Microsoft Office PowerPoint 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Using PowerPoint 2013 Opening PowerPoint 2013 Opening a Presentation Navigating between Slides Using the

More information

Web Site Design and Development Lecture 6

Web Site Design and Development Lecture 6 Web Site Design and Development Lecture 6 CS 0134 Fall 2018 Tues and Thurs 1:00 2:15PM Inheritance Before we talk about font properties, it needs to be known that font properties are inherited by the descendants

More information

Working with Tables in Word 2010

Working with Tables in Word 2010 Working with Tables in Word 2010 Table of Contents INSERT OR CREATE A TABLE... 2 USE TABLE TEMPLATES (QUICK TABLES)... 2 USE THE TABLE MENU... 2 USE THE INSERT TABLE COMMAND... 2 KNOW YOUR AUTOFIT OPTIONS...

More information

Excel 2010 Tutorials - Video File Attributes

Excel 2010 Tutorials - Video File Attributes Get Familiar with Excel 2010 42.30 2.70 The Excel 2010 Environment 4.10 0.18 Quick Access Toolbar 3.10 0.27 Excel 2010 Ribbon 3.10 0.26 File Tab 3.10 0.28 Home Tab 5.10 0.17 Insert Tab 3.10 0.18 Page Layout

More information

CATEGORY SKILL SET REF. TASK ITEM

CATEGORY SKILL SET REF. TASK ITEM Advanced Word Processing (AM3) The following is the Syllabus for Advanced Word Processing, which provides the basis for the module s practice-based test. The Syllabus for AM3 is over and above the skills

More information