Computer Assignment HyperText Markup Language Writing a Web Page - Tables and Lists Lesson 3

Size: px
Start display at page:

Download "Computer Assignment HyperText Markup Language Writing a Web Page - Tables and Lists Lesson 3"

Transcription

1 Computer Assignment HyperText Markup Language Writing a Web Page - Tables and Lists Lesson 3 Building Upon What Has Been Learned Well, you are two-thirds of the way through the 15 HTML files as you begin this last of the three beginning lessons. Once again you will create five (5) HTML files. This time you will use some very different Tags. In these five files you will use the Table and List Tags. The Table Tag is used to organize text, as well as, image content on your page. In the last lesson you displayed text and an image aligned horizontally on a Web page. If you have experimented with text and graphics trying to cooperate and display in the correct position on a page, you probably found it difficult at times. Tables will help you with this problem. The Table Tag ands its attendant Tags will allow you to organize images, text, or mixes of both in your page more easily. The List Tag is a little different. List is only used for text organization. You may or may not use it on Web pages you create, but you need to keep in your mental tools, as you will not know when it will be necessary to use it. The List Tag allows the automatic formatting of text with a heading sentence and an indented list below. The list that forms the second part of the paragraph may be bulleted, numbered, or indented alone, as you will see. You will only type one Web page file to see all of this formatting on one page. Creating a Basic Table What are Tables? They are grids, sometimes with lines, that are used to organize data. Although you will learn how to place basic tables in a Web page, you won t learn all of the ways to format them to make the table virtually any size, color, and text configuration. Here what the Table we are going to use looks like: YOSEMITE LODGE EMPLOYEE SHIFT SCHEDULE 9 A.M. 12 P.M. 2 P.M. HOUSE KEEPING John Mary Marcia SECURITY Kimberly George Ken CHECK-IN Jacob Nancy Adam This very basic Table has no lines to separate the information and it is in black and white, but it organizes the information nicely. That is great, now you know what a Table is, so lets put one into a Web page. Open NotePad, just as you did in Lesson 1 and Lesson 2. Type the HTML shown on the top of the next page into the workspace. Save the file as Table.htm. Be sure to type exactly as you see it, so the page will display properly. You will see a lot of new Tags that you probably don t understand. The text shown after the file you are typing will explain the Table Tegs in detail so you can learn them more effectively. 1

2 Look at the new Tags that have been used in this file. Here is a brief description of each: The <TABLE> tag declares there will be a table. Since this denotes the beginning of a table, be sure to end with the closing tag of </TABLE>. If you leave the closing off the table will not appear. Notice that the Table begins with the CAPTION tag, but it is optional. Most Browsers automatically center the caption above the table contents, but since some don t, it is good to place the alignment tag here. A Table is made up of Rows and Columns, with each row going left-to-right and each column going top-to-bottom. The first Row contains 9 A.M., 12 P.M., and 2 P.M. and each row is similar. The first Column contains HOUSE KEEPING, SECURITY, and CHECK- IN. This Table consists of four Rows and four Columns. Each row is begun with a <TR> tag. TR stands for Table Row. Tables are constructed as sequences of Rows. <TR> tells the Browser that a new row is beginning. If you don t use this tag then the browser will just keep adding rows to the right. The optional </TR> tag ends the row. It is optional, but not in nested Tables. Rows are divided into Cells. Each cell in the table we are using is a data cell. A cell can also contain no data, as in the cell in Row 1, Column 1. Cells can also overlap. <TD> stands for Table Data. It denotes the beginning of a new cell, This <TD> tag is used to markup each individual Cell. You could also designate type alignment (center, right, left), emphasize (bold, italic, underline), or color (background or text). Images can even be placed in cells. The closing </TD> tag is optional with one Table. 2

3 The closing </TD> tag is optional with one Row. It is considered good practice to use this Tag. It is a must if one table is nested within the cell of another. It is not used in the Table file you just typed, but could be. The <H3 ALIGN= CENTER > centers the Table, but the H# has no effect on the data. So the Table can be aligned right, center, or left. Notice that the width of each Column in the example you typed is not the same. The width of each Column is determined by the width of the largest amount of data in that column. While we won t do it, the column width, row height, text alignment, and other table sizing attributes can be set using various tags. Now find the file you just typed and saved, then Open it as you did the files in the last lessons. You will see your first Table in the browser. You are going to discover a few more Table attributes before you begin to design your own Web Page. At the right is what the page you just typed from page 15 looks like in the Browser. Look at it and read the explanation on the previous page slowly, while you compare it to what you have typed in the HTML file. Look at each Tag in the HTML file and try to understand how each Tag causes something to occur on the page displayed. It is the Tags that format the page content to appear as you designed the Web page. Making Cell Borders and Adding Color to a Table Open the HTML file in Notepad that you just finished and displayed. You will just make a few additions to the file to add color to some of the Cells and to add borders around the Cells and the Table. You will go to the line containing the TABLE Tag, then type a space after TABLE in the <TABLE> Tag and add BORDER= 5. This will add lines around all of the Cells and the Table that are 5 Pixels thick. The borders will be Black colored by default. Save this file with the name TableBorder.htm. A different number will produce a thicker or thinner line for the border. Now move to the first TD Tag, which you will find a few lines below the TABLE Tag. Insert a Cursor just after the TD, then add a space, followed by BODY BGCOLOR= C0C0FF. After the Tag, type &nbsp. This will add a space, like the space between two words, in the empty Cell. This will add a very thin Black border inside the Cell that had none before. You will see the difference if you look before and after you add the &nbsp. 3

4 In case you could not follow the written directions, and example of the file that you will have after you are done modifying. It shows the two changes covered so far. The next, and last step in modifying this file, is to add the same Tag to each of the three TD Tags you will find in the rest of the file. They will read <TD BODY BGCOLOR= FFFF00 > once they are modified. The color code for these will be different so the color produced will be Yellow. Be sure you check the example above as you work. When you done, Open the Web page in the Browser and the example at the right shows what you should see. If your page does not look like this one, edit, resave, and try again. There are a lot more things that can be done with Tables to make them look different, but you will need to experiment on your own. 4

5 Cellpadding and Cellspacing a Table Once again, you will use an earlier file to create the next one. Open the Table.htm and you will modify it to create the next one in the lesson. This will entail a very simple change to introduce a new formatting Tag. Find the TABLE Tag, which you will find two lines below the BODY Tag. As in the last file, add the BORDER= 5 Tag to the TABLE Tag. Use the example shown below. Immediately after the BORDER Tag, add two new Tags. If you look at the example, you will see CELLSPACING= 8 and CELLPADDING= 5 added to the TABLE Tag. The second addition will be the same Tag added to the last file. Add the BODY BGCOLOR= FFC0FF Tag to the first <TR> Tag. You will see it in the example two lines below the TABLE Tag. This will add a Pink fill color to the first Row in the Table. Last, immediately below the Tag you just worked on, Add the &nbsp entry to the empty first <TD> Tag. This doesn t do anything different from the last file, so you know what to expect. So what does all of this do to the Web page and the Table? The CELLSPACING Tag adds space between the individual Cells in the Table. The 5 value spaces the Cells 5 Pixels apart. Try another number, such as 10, and see the difference. The CELLPADDING Tag adds space around the margin of the contents of the Cell. If you compare the last and this Web page you will see the Cell boundaries are much tighter on the text in the Cells. Try changing this value to another value to see what the change looks like. These two Tags are used to give a different look and feel to Tables. 5

6 So, what should you see in the Browser window when your file is correctly written and uses the original values of 8 and 5? Look to the right and you will see the example that shows you what your Web page should look like. This is only one more Table file you will type. So you will need to experiment with the Tags you have learned in the last 3 files. It will help you get the look you want in your Web pages. But it doesn t stop here. The next file will show you another great use for Tables. Using Tables to Align and Arrange Images and Text The next file you will type will display would could be a real Web page. Before you begin, you will need open the Lesson 3 folder, which is in the HTML Activities folder, which you will find in the Activities Files folder on your Local C: drive. You will need to Copy each of the six files you will find in this folder and Paste them into the folder that holds the HTML file you will type for this Web page. For reference, the files are named Clouds Rest Half Dome.jpg, frozendrops.jpg, frozenfalls.jpg, iciclesimage.jpg, Snow Scene along Merced.jpg, YosemiteHeading.jpg. As you will see, this Web page is image driven. In fact, the largest image, which is YosemiteHeading.jpg, is not a picture. You should open it in Paint Shop Pro 8 and have a look at it. This is one way to display several images on a Web page, but only us one image. The original image is the one shown at the right. After a quick story board sketch, the image was cropped, then resized to the Pixel Size that was desired for the Web page. The Canvas was enlarged with a White background. On the new Canvas, two Blue colors were sampled from the image that would be used to create the text above and below the image that would become the heading and kicker for the Web page. A few other tools were used to touch up the Blue color in the YOSEMITE heading text so it was uniform. The use of Layers for each of the image elements made this job much easier. The resulting image has great impact in the Web page. Remember, though, this is a very simple graphic element. In reality, it might be too large an consume too much space on a commercial Web page or site. 6

7 The result of the image work is the merged layers of an image that contains a picture that is the essence of the entire Web page and the headings that put the theme into words. You might consider images like this on a Web page that you create on your own. You can begin typing the HTML file you will find on the next page in its entirety. If you take the time to look into the HTML in the file, you will see that the Web page is broken into 3 parts. The first part displays the image that was just discussed at the top of the page. The second, and most of the file, is a Table that contains all of the other images and a small amount of text. The last part is just a couple of lines of text referencing the page to view that will tell you much more about Yosemite. <TABLE BODY BGCOLOR="6782B7" CELLPADDING="20" BORDER="0" BORDER- COLOR="0000FF" WIDTH="1440" ALIGN="CENTER"> <TR> <TD WIDTH="550" ALIGN="CENTER"><IMG SRC="Snow Scene along Merced.jpg"> <TD WIDTH="340" ALIGN="CENTER"><FONT COLOR="FFFFFF" FACE="ARIAL" SIZE="4">Each Season transforms Yosemite Valley into a new magical world. But it is winter that creates a truly magical fantasy land. The landscape in winter is draped with soft, pure and fluffy white. But it is also framed by the structural shapes that ice can form.</font> <TD WIDTH="550" ALIGN="CENTER"><IMG SRC="Clouds Rest Half Dome.jpg"> <TR> <TD> <TD ALIGN="MIDDLE"><IMG SRC="iciclesimage.jpg"> <TD> <TR> <TD ALIGN="MIDDLE"><IMG SRC="frozendrops.jpg"> <TD ALIGN="MIDDLE"><FONT COLOR="FFFFFF" FACE="ARIAL" SIZE="4">As though frozen in time, nature's ice slows down those changes we would not normally be able to witness. In winter, nothing is protected from the stasis of crystalline ice.</font> <TD><IMG SRC="frozenfalls.jpg"> </TABLE> Look at the part of the HTML as you read on the next page. This is the Table. 7

8 The Table is actually very easy to understand. It contains three Rows TR. The first row contains three Cells TD, that have their width defined in pixels. It might help you to see the way the Table is constructed better if you introduce a Border around all of the Cells in the Table. In the <TABLE> Tag at the top, just change the BORDER= 0 to a value of 1 or 2. This will define the edges of the Cell boundaries with a thin Blue line. The only thing that can sometimes be difficult to work with is the placement of the elements in a Table Cell. It is best if you experiment with the LEFT, CENTER and RIGHT values for horizontal placement and the TOP, MIDDLE, and BOTTOM values for vertical placement. You can use this file to see how it all works. So, take some time and experiment with this file before completing it as it should be. Below is the file you should be creating. This Web page is a really good example of putting it all together and it will help you create your own Web page. Of course, you will need to take the time to study each part until you understand what is going on in the file and how the Tags are working. As with almost any learning you will ever do, you must put effort into trying to understand what is going on to learn. If you don t buy into the lesson, you will not learn much of anything, except that it is the road to failure. At the top of the next page, you will see the Web page that results from this file. When you view it, try to understand how you would change, or manipulate, the HTML to get a different overall look. This is a very formal layout of elements and good design does not need to have this symmetrical look, with everything centered on the page center. The Cells in Tables can be empty, in order to space other elements on the page. Try to think of putting all of your elements into rectangular boxes and arranging them like a puzzle to get the look you want. When you add color and formatting you will get the finished look you need to have a really good looking Web page. 8

9 9

10 Using the List Tag For the last HTML file you will use the List Tags. These are very easy Tags to use and master, but you may not have a reason to use them on your Web page. The List Tags perform exactly what they claim in their name, they make lists easy. There are three types of Lists. You can make numbered Lists, bulleted Lists, or indented Lists. All of the Lists begin with a line of text as a heading, then the listed items are all indented under the heading. The types of Lists are self-explanatory. The lines under the heading are indented and the items are either numbered, bulleted, or indented a second time. You will use all three in the HTML file you will type. The file is shown below. Since there are no images involved in this one, you can just Save the HTML file to the same place you have saved the other ones in this series of lessons. As you can see by each of the above formatted Lists, the heading is typed just as you would any standard line of type. The List Tags are then added below. For the numbered List, the Tag is <OL>, with the Tag being typed before each of the items in the list. You must close this tag with a </OL> after. OL means Open List. In the numbered list section of the file above, <LI> appears four time beneath the heading text, so the first Tag applies a number of 1 to the first item, 2 for the second item, and so on. In the second list heading and the four items below, the <UL> Tag is the opening Tag and then a </UL> closes the list at the end. The same <LI> Tag is used, but this time it adds a bullet symbol before each item in the list. The last set of items uses two Tags for formatting. There is a heading text line, then the <DL> Tag begins the List. A <DT> Tag indented the first sub-item and then the indented list uses the <DD> Tag for each item. The second <DT> Tag adds a second indented list. Turn the page to see what these Tags do. 10

11 If the previous paragraph was a little difficult to follow, just look at the three Lists that have been created by the HTML file. You need to type this to create your own file. Of course the colored text and the lines, as well as the background color, are all from files you types in the earlier lessons. This is a simple way to make lists that are indented below the line above. You can use these in Tables, or in the text on the Web page. They are put to good use on pages with statistics, such as sporting events, or pages that cover any display of numbers or even terms, such as in a contract or the description of an item that is being sold or displayed in a Web page. Putting Your Knowledge to Use You have now created 15 HTML files. The three lessons that they have been contained within are all organized around families, group Tags that are somewhat alike. Some common formatting learned in earlier lessons is also used again on the lessons that follow. While there are many more Tags used in HTML, the ones you have now been exposed to will allow you to create your own Web pages, or assemble a Web page from elements that are supplied to you. Lesson 4 in this series puts it all on you. If you typed these, but did not invest learning as you did, you will have a difficult time creating your own page. If you did learn, it will be easy. Lesson 5 is an assembly lesson, but your teacher will decide which lesson you will do. You should be able to create a simple, but effective product. 11

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

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

More information

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts A Text Table New Perspectives on Creating Web Pages with HTML This figure shows a text table. Tutorial 4: Designing a Web Page with Tables 1 2 A Graphical Table Considerations for Text and Graphical Tables

More information

Joomla Article Advanced Topics: Table Layouts

Joomla Article Advanced Topics: Table Layouts Joomla Article Advanced Topics: Table Layouts An HTML Table allows you to arrange data text, images, links, etc., into rows and columns of cells. If you are familiar with spreadsheets, you will understand

More information

HTML Lesson 7. Your assignment:

HTML Lesson 7. Your assignment: HTML Lesson 7 Tables are one of the biggest tools Web developers use to present data wherever they want data to go on the page. Like spreadsheets, rows go across (left to right) and columns go up and down.

More information

NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK

NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK Nursing 3225 Web Dev Manual Page 1 NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK Nursing 3225 Web Dev Manual Page 2 N3225: Nursing Inquiry Student Created Group Website Addresses (1 of 2)

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Lecture 9 HTML Lists & Tables (Web Development Lecture 3)

Lecture 9 HTML Lists & Tables (Web Development Lecture 3) Lecture 9 HTML Lists & Tables (Web Development Lecture 3) Today is our 3 rd Web Dev lecture During our 2 nd lecture on Web dev 1. We learnt to develop our own Web pages in HTML 2. We learnt about some

More information

Umbraco v4 Editors Manual

Umbraco v4 Editors Manual Umbraco v4 Editors Manual Produced by the Umbraco Community Umbraco // The Friendly CMS Contents 1 Introduction... 3 2 Getting Started with Umbraco... 4 2.1 Logging On... 4 2.2 The Edit Mode Interface...

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

QUESTION BANK COMPUTER SCIENCE. Class VIII LESSON-1 INTRODUCTION TO MS ACCESS

QUESTION BANK COMPUTER SCIENCE. Class VIII LESSON-1 INTRODUCTION TO MS ACCESS QUESTION BANK COMPUTER SCIENCE Class VIII LESSON-1 INTRODUCTION TO MS ACCESS 1. What is a database? 2. Explain various types of database? 3. What is Normalization? Why is it required? 4. Database 5. Table

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the

More information

Digital Marketing EasyEditor Guide Dynamic

Digital Marketing EasyEditor Guide Dynamic Surveys ipad Segmentation Reporting Email Sign up Email marketing that works for you Landing Pages Results Digital Marketing EasyEditor Guide Dynamic Questionnaires QR Codes SMS 43 North View, Westbury

More information

Create a Poster Using Publisher

Create a Poster Using Publisher Contents 1. Introduction 1. Starting Publisher 2. Create a Poster Template 5. Aligning your images and text 7. Apply a background 12. Add text to your poster 14. Add pictures to your poster 17. Add graphs

More information

WebCT 4.x: HTML Editor

WebCT 4.x: HTML Editor Competencies After reading this document, you will be able to: Employ the HTML Editor capabilities to create and publish content. About HTML Editor The HTML editor provides word-processor-like features

More information

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

Garfield Public Schools Fine & Practical Arts Curriculum Web Design Garfield Public Schools Fine & Practical Arts Curriculum Web Design (Half-Year) 2.5 Credits Course Description This course provides students with basic knowledge of HTML and CSS to create websites and

More information

ADOBE DREAMWEAVER CS3 TUTORIAL

ADOBE DREAMWEAVER CS3 TUTORIAL ADOBE DREAMWEAVER CS3 TUTORIAL 1 TABLE OF CONTENTS I. GETTING S TARTED... 2 II. CREATING A WEBPAGE... 2 III. DESIGN AND LAYOUT... 3 IV. INSERTING AND USING TABLES... 4 A. WHY USE TABLES... 4 B. HOW TO

More information

Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady

Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady Learnem.com Web Development Course Series Learn em HTML Web Design in 7 days! By: Siamak Sarmady L E A R N E M W E B D E V E L O P M E N T C O U R S E S E R I E S HTML Web Design in 7 Days! Ver. 2.08.02

More information

Using Adobe Dreamweaver CS4 (10.0)

Using Adobe Dreamweaver CS4 (10.0) Getting Started Before you begin create a folder on your desktop called DreamweaverTraining This is where you will save your pages. Inside of the DreamweaverTraining folder, create another folder called

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

Publisher 2010 Cheat Sheet

Publisher 2010 Cheat Sheet April 20, 2012 Publisher 2010 Cheat Sheet Toolbar customize click on arrow and then check the ones you want a shortcut for File Tab (has new, open save, print, and shows recent documents, and has choices

More information

Sage Accountants Business Cloud EasyEditor Quick Start Guide

Sage Accountants Business Cloud EasyEditor Quick Start Guide Sage Accountants Business Cloud EasyEditor Quick Start Guide VERSION 1.0 September 2013 Contents Introduction 3 Overview of the interface 4 Working with elements 6 Adding and moving elements 7 Resizing

More information

Web page design in 7 days!

Web page design in 7 days! Learnem Group presents: Web page design in 7 days! Lessons 1-7 By: Siamak Sarmady Start Here Copyright Notice : 2000,2001 Siamak Sarmady and Learnem Group. All rights reserved. This text is written to

More information

Creating a Poster Presentation using PowerPoint

Creating a Poster Presentation using PowerPoint Creating a Poster Presentation using PowerPoint Course Description: This course is designed to assist you in creating eye-catching effective posters for presentation of research findings at scientific

More information

Joomla! 2.5.x Training Manual

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

More information

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame...

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame... Using Microsoft Office 2003 Introduction to FrontPage Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Fall 2005 Contents Launching FrontPage... 3 Working with

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial Microsoft Word 2010 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Website Development Komodo Editor and HTML Intro

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

More information

This document will describe how you can create your own, fully responsive. drag and drop email template to use in the email creator.

This document will describe how you can create your own, fully responsive. drag and drop email template to use in the email creator. 1 Introduction This document will describe how you can create your own, fully responsive drag and drop email template to use in the email creator. It includes ready-made HTML code that will allow you to

More information

RADFORD UNIVERSITY. Radford.edu. Content Administrator s Guide

RADFORD UNIVERSITY. Radford.edu. Content Administrator s Guide RADFORD UNIVERSITY Radford.edu Content Administrator s Guide Contents Getting Started... 2 Accessing Content Administration Tools... 2 Logging In... 2... 2 Getting Around... 2 Logging Out... 3 Adding and

More information

Excel 2007 A Beginners Guide

Excel 2007 A Beginners Guide Excel 2007 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

If you know exactly how you want your business forms to look and don t mind

If you know exactly how you want your business forms to look and don t mind appendix e Advanced Form Customization If you know exactly how you want your business forms to look and don t mind detail work, you can configure QuickBooks forms however you want. With QuickBooks Layout

More information

Creating Web Pages with Microsoft FrontPage

Creating Web Pages with Microsoft FrontPage Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short

More information

TUTORIAL 4 Building a Navigation Bar with Fireworks

TUTORIAL 4 Building a Navigation Bar with Fireworks TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar

More information

Creating Web Pages with Dreamweaver CS 6 and CSS

Creating Web Pages with Dreamweaver CS 6 and CSS Table of Contents Overview... 3 Getting Started... 3 Web Page Creation Tips... 3 Creating a Basic Web Page Exercise... 4 Create a New Page... 4 Using a Table for the Layout... 5 Adding Text... 6 Adding

More information

Word processing software

Word processing software Unit 244 Word processing software UAN: Level: 2 Credit value: 4 GLH: 30 Assessment type: Relationship to NOS: Assessment requirements specified by a sector or regulatory body: Aim: R/502/4628 Portfolio

More information

WYSIWYG Editor in Detail

WYSIWYG Editor in Detail WYSIWYG Editor in Detail 1. Print prints contents of the Content window 2. Find And Replace opens the Find and Replace dialogue box 3. Cut removes selected content to clipboard (requires a selection) 4.

More information

Web Developer Jr - Newbie Course

Web Developer Jr - Newbie Course Web Developer Jr - Newbie Course Session Course Outline Remarks 1 Introduction to web concepts & view samples of good websites. Understand the characteristics of good website Understand the importance

More information

Drupal Training Guide

Drupal Training Guide Drupal Training Guide Getting Started Drupal Information page on the IT site: http://it.santarosa.edu/drupal On this page is information about Drupal sign up, what Drupal is, which is a content management

More information

Dreamweaver. Introduction to Editing Web Pages

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

More information

LaGuardia Community College 31-10 Thomson Ave, Long Island City, New York 11101 Created by ISMD s Dept. Training Team. Overview

LaGuardia Community College 31-10 Thomson Ave, Long Island City, New York 11101 Created by ISMD s Dept. Training Team. Overview Overview Dreamweaver gives you many options when it comes to setting the properties for your webpages. Within the "Page Properties" dialog box, you can set the appearance of your page, name your page and

More information

Intro to Web Design. ACM Webmonkeys @ UIUC

Intro to Web Design. ACM Webmonkeys @ UIUC Intro to Web Design ACM Webmonkeys @ UIUC How do websites work? Note that a similar procedure is used to load images, etc. What is HTML? An HTML file is just a plain text file. You can write all your HTML

More information

Macromedia Dreamweaver Tutorial

Macromedia Dreamweaver Tutorial Macromedia Instructions: Work through this tutorial Ask when you need help Complete all tasks set in the tutorial Refer back to this tutorial when you design your own website Enjoy 1 Macromedia SET UP

More information

Cut-to-the-Chase Series Web Foundations. HTML 101 - Assignment. By Eric Matthews 2001. Visit us at: www.anglesanddangles.com

Cut-to-the-Chase Series Web Foundations. HTML 101 - Assignment. By Eric Matthews 2001. Visit us at: www.anglesanddangles.com Cut-to-the-Chase Series Web Foundations HTML 101 - Assignment By Eric Matthews 2001 Visit us at: www.anglesanddangles.com General Requirements All of your work should conform to the general requirements.

More information

Adobe Dreamweaver CC 14 Tutorial

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

More information

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

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

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Excel 2007: Basics Learning Guide

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

More information

Basic Website Creation. General Information about Websites

Basic Website Creation. General Information about Websites Basic Website Creation General Information about Websites Before you start creating your website you should get a general understanding of how the Internet works. This will help you understand what goes

More information

Excel 2003 A Beginners Guide

Excel 2003 A Beginners Guide Excel 2003 A Beginners Guide Beginner Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

Web Authoring. www.fetac.ie. Module Descriptor

Web Authoring. www.fetac.ie. Module Descriptor The Further Education and Training Awards Council (FETAC) was set up as a statutory body on 11 June 2001 by the Minister for Education and Science. Under the Qualifications (Education & Training) Act,

More information

Help on Icons and Drop-down Options in Document Editor

Help on Icons and Drop-down Options in Document Editor Page 1 of 5 Exact Synergy Enterprise Help on Icons and Drop-down Options in Document Editor Introduction The following table provides descriptions on the icons and drop-down options that are available

More information

Microsoft Word defaults to left justified (aligned) paragraphs. This means that new lines automatically line up with the left margin.

Microsoft Word defaults to left justified (aligned) paragraphs. This means that new lines automatically line up with the left margin. Microsoft Word Part 2 Office 2007 Microsoft Word 2007 Part 2 Alignment Microsoft Word defaults to left justified (aligned) paragraphs. This means that new lines automatically line up with the left margin.

More information

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

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

More information

1. Open the Practice web site. 2. Open the favorite.htm file. 3. Select the text to be used as the hyperlink for the first favorite web site.

1. Open the Practice web site. 2. Open the favorite.htm file. 3. Select the text to be used as the hyperlink for the first favorite web site. FrontPage 2003 Lesson 13 - Hyperlinks Types of Hyperlinks Hyperlinks are the primary method used to navigate between pages and Web sites. Links can point to other web pages, web sites, graphics, files,

More information

Microsoft Word 2013 Tutorial

Microsoft Word 2013 Tutorial Microsoft Word 2013 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Microsoft Publisher 2010 What s New!

Microsoft Publisher 2010 What s New! Microsoft Publisher 2010 What s New! INTRODUCTION Microsoft Publisher 2010 is a desktop publishing program used to create professional looking publications and communication materials for print. A new

More information

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

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

More information

Excel -- Creating Charts

Excel -- Creating Charts Excel -- Creating Charts The saying goes, A picture is worth a thousand words, and so true. Professional looking charts give visual enhancement to your statistics, fiscal reports or presentation. Excel

More information

BLACKBOARD 9.1: Text Editor

BLACKBOARD 9.1: Text Editor BLACKBOARD 9.1: Text Editor The text editor in Blackboard is a feature that appears in many different areas, but generally has the same look and feel no matter where it appears. The text editor has changed

More information

Basic tutorial for Dreamweaver CS5

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

More information

PowerPoint 2007 Basics Website: http://etc.usf.edu/te/

PowerPoint 2007 Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ PowerPoint is the presentation program included in the Microsoft Office suite. With PowerPoint, you can create engaging presentations that can be presented in person, online,

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial 1 Microsoft Word 2010 Tutorial Microsoft Word 2010 is a word-processing program, designed to help you create professional-quality documents. With the finest documentformatting tools, Word helps you organize

More information

Caldes CM12: Content Management Software Introduction v1.9

Caldes CM12: Content Management Software Introduction v1.9 Caldes CM12: Content Management Software Introduction v1.9 Enterprise Version: If you are using Express, please contact us. Background Information This manual assumes that you have some basic knowledge

More information

Introduction to Drupal

Introduction to Drupal Introduction to Drupal Login 2 Create a Page 2 Title 2 Body 2 Editor 2 Menu Settings 5 Attached Images 5 Authoring Information 6 Revision Information 6 Publishing Options 6 File Attachments 6 URL Path

More information

ECDL / ICDL Word Processing Syllabus Version 5.0

ECDL / ICDL Word Processing Syllabus Version 5.0 ECDL / ICDL Word Processing Syllabus Version 5.0 Purpose This document details the syllabus for ECDL / ICDL Word Processing. The syllabus describes, through learning outcomes, the knowledge and skills

More information

Quick Reference Guide

Quick Reference Guide Simplified Web Interface for Teachers Quick Reference Guide Online Development Center Site Profile 5 These fields will be pre-populated with your information { 1 2 3 4 Key 1) Website Title: Enter the name

More information

Creating Web Pages with HTML Simplified. 3rd Edition

Creating Web Pages with HTML Simplified. 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/2248215/ Creating Web Pages with HTML Simplified. 3rd Edition Description: Are you new to computers? Does new technology make you

More information

Creating Personal Web Sites Using SharePoint Designer 2007

Creating Personal Web Sites Using SharePoint Designer 2007 Creating Personal Web Sites Using SharePoint Designer 2007 Faculty Workshop May 12 th & 13 th, 2009 Overview Create Pictures Home Page: INDEX.htm Other Pages Links from Home Page to Other Pages Prepare

More information

Catalog Creator by On-site Custom Software

Catalog Creator by On-site Custom Software Catalog Creator by On-site Custom Software Thank you for purchasing or evaluating this software. If you are only evaluating Catalog Creator, the Free Trial you downloaded is fully-functional and all the

More information

HIT THE GROUND RUNNING MS WORD INTRODUCTION

HIT THE GROUND RUNNING MS WORD INTRODUCTION HIT THE GROUND RUNNING MS WORD INTRODUCTION MS Word is a word processing program. MS Word has many features and with it, a person can create reports, letters, faxes, memos, web pages, newsletters, and

More information

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5

More information

Word Processing programs and their uses

Word Processing programs and their uses Word Processing programs and their uses An application that provides extensive tools for creating all kinds of text based programs. They are not limited to working with text and enable you to add images

More information

CREATING WEB PAGES USING HTML INTRODUCTION

CREATING WEB PAGES USING HTML INTRODUCTION CREATING WEB PAGES USING HTML INTRODUCTION Web Page Creation Using HTML: Introduction 1. Getting Ready What Software is Needed FourSteps to Follow 2. What Will Be On a Page Technical, Content, & Visual

More information

MICROSOFT POWERPOINT STEP BY STEP GUIDE

MICROSOFT POWERPOINT STEP BY STEP GUIDE IGCSE ICT SECTION 16 PRESENTATION AUTHORING MICROSOFT POWERPOINT STEP BY STEP GUIDE Mark Nicholls ICT Lounge Page 1 Contents Importing text to create slides Page 4 Manually creating slides.. Page 5 Removing

More information

By Glenn Fleishman. WebSpy. Form and function

By Glenn Fleishman. WebSpy. Form and function Form and function The simplest and really the only method to get information from a visitor to a Web site is via an HTML form. Form tags appeared early in the HTML spec, and closely mirror or exactly duplicate

More information

Spreadsheet - Introduction

Spreadsheet - Introduction CSCA0102 IT and Business Applications Chapter 6 Spreadsheet - Introduction Spreadsheet A spreadsheet (or spreadsheet program) is software that permits numerical data to be used and to perform automatic

More information

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring 7 th Annual LiveText Collaboration Conference Advanced Document Authoring Page of S. La Grange Road, nd Floor, La Grange, IL 6055-455 -866-LiveText (-866-548-3839) edu-solutions@livetext.com Page 3 of

More information

Mura CMS. (Content Management System) Content Manager Guide

Mura CMS. (Content Management System) Content Manager Guide Mura CMS (Content Management System) Content Manager Guide Table of Contents Table of Contents 1. LOGGING IN...1 2. SITE MANAGER...2 3. ADDING CONTENT (Pages, Folders, etc.)...6 4. WORKING WITH IMAGES...15

More information

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com Essential HTML & CSS for WordPress Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com HTML: Hypertext Markup Language HTML is a specification that defines how pages are created

More information

ECDL. European Computer Driving Licence. Word Processing Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Word Processing Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Word Processing Software BCS ITQ Level 2 Using Microsoft Word 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT,

More information

CREATING POSTERS WITH POWERPOINT

CREATING POSTERS WITH POWERPOINT CREATING POSTERS WITH POWERPOINT PowerPoint files will be required for Posters on CD-Rom with very few exceptions. WHY POWERPOINT? Although there are many software programs that will create posters, PowerPoint

More information

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

IE Class Web Design Curriculum

IE Class Web Design Curriculum Course Outline Web Technologies 130.279 IE Class Web Design Curriculum Unit 1: Foundations s The Foundation lessons will provide students with a general understanding of computers, how the internet works,

More information

Microsoft Expression Web Quickstart Guide

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

More information

Coding HTML Email: Tips, Tricks and Best Practices

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

More information

Have you seen the new TAMUG websites?

Have you seen the new TAMUG websites? 4 For all Cascade Management System request for PUBLISHING please email cms@tamug.edu for the quickest response. For all Cascade Management System request for QUESTIONS or COMMENTS please email cascadeusers@tamug.edu

More information

Microsoft Word 2010. Quick Reference Guide. Union Institute & University

Microsoft Word 2010. Quick Reference Guide. Union Institute & University Microsoft Word 2010 Quick Reference Guide Union Institute & University Contents Using Word Help (F1)... 4 Window Contents:... 4 File tab... 4 Quick Access Toolbar... 5 Backstage View... 5 The Ribbon...

More information

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004

Data Visualization. Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Data Visualization Prepared by Francisco Olivera, Ph.D., Srikanth Koka Department of Civil Engineering Texas A&M University February 2004 Contents Brief Overview of ArcMap Goals of the Exercise Computer

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Creating Drawings in Pro/ENGINEER

Creating Drawings in Pro/ENGINEER 6 Creating Drawings in Pro/ENGINEER This chapter shows you how to bring the cell phone models and the assembly you ve created into the Pro/ENGINEER Drawing mode to create a drawing. A mechanical drawing

More information

SMART NOTEBOOK 10. Instructional Technology Enhancing ACHievement

SMART NOTEBOOK 10. Instructional Technology Enhancing ACHievement SMART NOTEBOOK 10 Instructional Technology Enhancing ACHievement TABLE OF CONTENTS SMART Notebook 10 Themes... 3 Page Groups... 4 Magic Pen... 5 Shape Pen... 6 Tables... 7 Object Animation... 8 Aligning

More information

Instructions to Create Your Rollup Poster in PowerPoint

Instructions to Create Your Rollup Poster in PowerPoint Instructions to Create Your Rollup Poster in PowerPoint THE IDEAL POSTER IS DESIGNED TO... Provide a brief overview of your research Encourage discussion Stand alone when you re not there to provide an

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Get To Know Paint Shop Pro: Layers

Get To Know Paint Shop Pro: Layers Get To Know Paint Shop Pro: Layers Layers are the building blocks of most images from photo collages to digital scrapbook layouts. Once you harness this powerful tool, you ll be able to easily create stunning

More information

Computer Literacy Syllabus Class time: Mondays 5:00 7:00 p.m. Class location: 955 W. Main Street, Mt. Vernon, KY 40456

Computer Literacy Syllabus Class time: Mondays 5:00 7:00 p.m. Class location: 955 W. Main Street, Mt. Vernon, KY 40456 Computer Literacy Syllabus Class time: Mondays 5:00 7:00 p.m. Class location: 955 W. Main Street, Mt. Vernon, KY 40456 INSTRUCTOR: Jamie A. McFerron OFFICE: 245 Richmond Street Mt. Vernon, KY 40456 PHONE:

More information

Microsoft Office PowerPoint 2013

Microsoft Office PowerPoint 2013 Microsoft Office PowerPoint 2013 Navigating the PowerPoint 2013 Environment The Ribbon: The ribbon is where you will access a majority of the commands you will use to create and develop your presentation.

More information

CHAPTER 10. When you complete this chapter, you will be able to:

CHAPTER 10. When you complete this chapter, you will be able to: Data Tables CHAPTER 10 When you complete this chapter, you will be able to: Use table elements Use table headers and footers Group columns Style table borders Apply padding, margins, and fl oats to tables

More information

DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site

DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site Page 1 of 22 DESIGN A WEB SITE USING PUBLISHER Before you begin, plan your Web site Before you create your Web site, ask yourself these questions: What do I want the site to do? Whom do I want to visit

More information