HTML Exercise 24 Tables

Size: px
Start display at page:

Download "HTML Exercise 24 Tables"

Transcription

1 HTML Exercise 24 Tables Tables allow you to put things in columns and rows. Without tables, you can only have one long list of text and graphics (check Exercise 20). If you have ever made a table in a word processor, you can make a table in HTML it s exactly the same concept. You can resize the entire table, resize the individual rows and columns, merge several cells intone cell, color the background of individual cells or the entire table. Once you ve got a table on the page, you can insert text into it, format text, insert graphics, and make links from the text and graphics. Creating a Basic Table Table 1 In this lesson, you create a basic table by using these basic paired tags: <TABLE>...</TABLE>... <TD>...</TD> Indicates a table. The tags surround the entire table. Indicates a table row. The tags surround the entire row. Indicates table data or a cell. The tags surround the entire cell. Creating a basic table is easy. For the following example, suppose that you want to show your program on your Web page. Your program may look like this. This is a 7 row by 4 column table. Table 2 Period Course Teacher Room 1 Math Andrew 26 2 English Varni 48 3 PE Wong Gym 4 Science Schaefer 40 5 History Rand 31 6 Computers Rubin 46 In the following exercise, you build this table starting with Row 1. Then using copy and paste you will add the other rows. Finally, you will format the table my merging a row, adding borders, aligning text, and learning to change column width. You learned how to do these things in Microsoft Word and Excel, so it will not be very hard to understand in HTML. 1. Double-click your HTML folder to open it. 2. Double-click the html_template.html document to open it. 3. Click View on the Menu bar and select Source. 4. The HTML code for the Web page will open in Notepad. Exercise 24 Page 1

2 5. Click File on the Menu bar and select Save As. 6. The Save As dialog box opens. 7. Save in your HTML folder. 8. Change the file name to tables.html. 9. Click Save or press Enter. 10. Click the Internet Explorer button on the Taskbar. 11. Close the html_template. Creating the Table 12. Click the Notepad document button on the Taskbar. 13. Change the Revision Date in the footer of the page to today s date. 14. Below the date, add this line of code. Revised--Date<BR> HTML Exercise 24<BR> 15. Use the Caps Lock key to make all caps for the tags. 16. Change the dummy text between the <TITLE> </TITLE> tags. <!DOCTYPE HTML PUBLIC "-W3C/DTD HTML 4.0 FINAL//EN"> <HTML> <HEAD> <TITLE>Deciding To Use A Table</TITLE> Changing the Background Color of a Web Page 17. Locate the <BODY> tag. 18. Type this to make a dark yellow background color. <BODY BGCOLOR="#FEDD6A""> Hexadecimal Code 19. Click the Internet Explorer button on the Taskbar. 20. Click the Refresh button. 21. You should now see the Web page with a dark yellow background. Matching the Background Color In order to make the heading transparent, always use a background color that will match the Web page. 22. Click Start, point to Programs, point to the Jasc Software folder, and select Paint Shop Pro Maximize the Paint Shop Pro window. 24. Click the triangle on the Foreground/Stroke button and select Solid. 25. Click the Foreground/Stroke button, but not on the triangle. 26. The Color dialog box opens. 27. Change the Hexadecimal Code to:. Exercise 24 Page 2

3 28. Click OK. 29. Click the triangle on the Background/Fill button and select Solid. 30. Click the Background/Fill button, but not on the triangle. 31. The Color dialog box opens. 32. Under Basic colors, select White. 33. Click OK. 34. Under Textures, both the Foreground and Background should be set to Null. 35. Press Ctrl+N. 36. The New Image dialog box opens. 37. Under Image Dimensions, select 400 pixels for the Width and 150 pixels for the Height. 38. The Resolution should be set to 72 ppi. 39. For Background Color, select Foreground Color. 40. For Image Type, select 16.7 Million Colors. 41. Notice the Memory Required. This is far too large for a Web graphic. Don t worry about it for now. 42. Click OK. 43. Click the Normal Viewing button on the Toolbar. 44. The canvas is now at full size. Creating Text 45. Click the Text tool on the Tool Palette. 46. Move the mouse over the drawing canvas. 47. Click on the drawing canvas. 48. The Text Entry dialog box opens. 49. Under Font, select a font with a heavy weight. Exercise 24 Page 3

4 50. Under Size, select 72 or lower. 51. Select Bold 52. Select Center. 53. Under Create As, select Floating and Antialias. 54. Select Auto Kern. Kerning is the space between letters. 55. Click the Standard text button. 56. This turns off the Stroke color and leaves the Fill color. 57. Press the Caps Lock key and type TABLES in the text box. 58. Click OK. 59. The text is selected. 60. Move the mouse pointer over the selected text until the pointer turns to a four-headed arrow. 61. The four-headed arrow is called the Mover tool. 62. Move the text horizontally to the middle of the canvas. Creating Textured Text with SuperBladePro 63. Click Effects on the Menu bar, point to Plug-in Filters, point to Flaming Pear, and select SuperBladePro. 64. The SuperBladePro dialog box opens. Loading a SuperBladePro Preset 65. Click the Load Preset button. 66. The Open a settings file dialog box will appear. 67. Double-click the Downloaded folder. 68. Select.q5q. 69. A preview of the effect will appear on the right. 70. Click Open. 71. You can now see a preview of the effect on your text. 72. Click the + sign so that you are looking at 100%. 73. Click OK. Exercise 24 Page 4

5 Adding a Drop Shadow Effect 74. Click Effects on the Menu bar, point to 3D Effects, and select Drop Shadow. 75. The Drop Shadow dialog box opens. 76. Click the Color box. 77. The Colors dialog box opens. 78. Under Basis Colors, select Black. 79. Click OK. 80. Copy the settings in the picture to the right. 81. Click OK. 82. Do not deselect the text. 83. Look at Figure 1. Figure 1: Your teacher used the Autumn preset. Saving as a Compressed GIF File Paint Shop Pro files are not compressed. GIF files are compressed and are much smaller in size. 84. Click File on the Menu bar, point to Export, and select GIF Optimizer. 85. The GIF Optimizer opens. 86. Click the Transparency tab. 87. Select Outside the current selection. 88. Everything outside the selection will become transparent. 89. Click the Partial Transparency tab. Exercise 24 Page 5

6 90. Copy the settings to the right. 91. Click the Colors tab. 92. Copy the settings to the right. 93. You need 256 colors, for this graphic to look good. 94. Notice how the two pictures look the same, but the file size is much smaller because it is compressed. 95. Click OK. 96. The Save As dialog box opens. 97. Look in your HTML folder. 98. Name the file heading12.gif. 99. Click Save or press Enter The file is now 9 times smaller in file size, and is now ready to be inserted into your tables.html file Close Paint Shop Pro. Inserting a Picture in HTML To insert a picture use the <IMG SRC= filename > tag. The tag is nonpaired Click the tables.html Notepad document on the Taskbar Select this line of code: <P>All of our wonderful text, graphics, hyperlinks, and sounds go here.</p> 104. Type this to make a new heading. <P ALIGN="center"><IMG SRC="heading12.gif"></P> 105. Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button Look at the picture to the right. Exercise 24 Page 6

7 Creating an Introduction 109. Add this code beneath the heading. </HEAD> <BODY BGCOLOR="#FEDD6A"> <P ALIGN="center"><IMG SRC="heading12.gif"></P> <P ALIGN="center">Tables are great for holding data or for giving you control over the layout of your Web page.</p> <H2 ALIGN="center">My Program</H2> <P ALIGN="center">This is my daily schedule. Click on a link to go to the teacher's Web page.</p> Starting the Table The table must be surrounded by the paired tags 110. Add this code beneath the introduction. <P ALIGN="center">This is my daily schedule. Click on a link to go to the teacher's Web page.</p> <TABLE> </TABLE> Creating Row Make the following changes between the <TABLE> </TABLE> tags Use the Caps Lock key to make all caps for the tags. <TABLE> <TD></TD> <TD></TD> <TD></TD> <TD></TD> </TABLE> Each tag creates a row. You made 1 row that will take up the full page. Each <TD> </TD> tag creates a cell. You made four cells across the row 113. Click File on the Menu bar and select Save Select the... tags and the < TD> </TD> tags between them Press Ctrl+C to copy the row Each row of the table will have the same amount of cells Click to move the insertion point before the closing </TABLE> tag Press Enter. Exercise 24 Page 7

8 119. In the empty space you have created, press Ctrl+V to paste the tags 6 times Now you have a total of 7 rows with 4 cells each. Adding Labels and Data to the Rows 121. Type your labels and data in between the <TD></TD> tags. Your HTML will look something like below. <TABLE> <TD>Period</TD> <TD>Course</TD> <TD>Teacher</TD> <TD>Room</TD> <TD>1</TD> <TD>Math</TD> <TD>Andrew</TD> <TD>26</TD> Row 1 contains your column labels. You have 4 columns of data. Press Enter to create a space between rows. Rows 2-7 contains your Period 1-6 data. You can use your own data or my dummy data. <TD>2</TD> <TD>English</TD> <TD>Varni</TD> <TD>48</TD> <TD>3</TD> <TD>PE</TD> <TD>Wong</TD> <TD>Gym</TD> <TD>4</TD> <TD>Science</TD> <TD>Schaefer</TD> <TD>27</TD> Row 3 Row 4 Row 5 <TD>5</TD> <TD>Advanced Computers</TD> <TD>Rubin</TD> <TD>46</TD> Row 6 Exercise 24 Page 8

9 <TD>6</TD> <TD>History</TD> <TD>Bernier</TD> <TD>47</TD> </TABLE> Row Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button Look at Figure 2. Figure 2: The document will not be particularly pretty yet, but it s a start. Formatting Your Table Now that you have a table in your document, you're ready to spiff it up a little with borders, and formatting. You format your table by adding subcommands within the <TABLE>,, or <TD> tags. Of course you can add bold, italics, and underlining as well. You will learn to format fonts and color rows and columns later. Table 2 Table Subcommands BORDER= n CELLSPACING= n CELLPADDING= n WIDTH= n ALIGN = left (or center or right) Draws a border around the cells in the number of pixels Inserts a number of pixel spaces between cells. Adds a number of pixel space between the text and the cell walls Changes the width of the table or cell based on n (number of pixels or percent). Controls the alignment of the table on the page. Exercise 24 Page 9

10 Applying Borders Using borders on tables helps your readers see data more clearly. However, you do not have to use borders at all. For example, tables with many rows and many columns may look too busy if you apply a border. In addition, if you have several tables on a page, borders might actually make the tables less readable. You have to decide for yourself whether the border helps. Try the table with and without the border to help you decide. To apply borders to your table, follow these steps: 126. Click the Notepad button on the Taskbar Add a 3-pixel border to the opening <TABLE> tag The larger the number in the BORDER subcommand, the wider the borders on the table. <TABLE BORDER="3" 129. Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button Look at Figure 3. Figure 3 Making Your Labels Stand Out To make your labels stand out, make the text bold. <TD><B>Period</B></TD> <TD><B>Course</B></TD> <TD><B>Teacher</B></TD> <TD><B>Room</B></TD> FILO First in, last out 133. Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button. Exercise 24 Page 10

11 136. Look at Figure 4. Adding Spacing to Your Table Cell padding adds space around cell contents, to make the table look a little better. Cell spacing adds space between the cells, again, to make the table look a bit better. Both cell padding and cell spacing are measured in pixels. Figure 4 Changing the cell padding and cell spacing is particularly important when you use tables to create columns. If your columns are too bulky, for example, they appear very close together, which can be just as difficult to read as one fat column. Similarly, if you don't have enough space between the individual cells, the information within the cells tends to blend together and appear like one fat cell with too much information in it. You can either specify the width in a percentage of the window width or in an exact number of pixels. Width in percentage is less likely to cause problems with everything not fitting on a screen. This step establishes the table width at 600 pixels a reasonable width to spread the table out within the narrowest screen you can anticipate your readers having Click the Notepad button on the Taskbar Type the following subcommands within the opening <TABLE> tag <TABLE BORDER="3" WIDTH="600" CELLSPACING="5" CELLPADDING="3"> 139. Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button Look at Figure 5. Figure Notice how much more readable the table is now. Exercise 24 Page 11

12 Aligning Cell Contents Changing the alignment can help make the information easier to read. The table is aligned left by default. Cell contents are aligned left by default. You can change the alignment of a table, an entire row, or a cell by adding the ALIGN= subcommand within the or <TD> tags Click the Notepad button on the Taskbar Add the ALIGN= center subcommand to the opening tag of the labels Add the ALIGN= center subcommand to the opening tag of the labels. <TABLE BORDER="3" WIDTH="600" CELLSPACING="5" CELLPADDING="3" ALIGN="center"> <TR ALIGN="center"> <TD><B>Period</B></TD> <TD><B>Course</B></TD> <TD><B>Teacher</B></TD> <TD><B>Room</B></TD> The center subcommand in the tab affects the text in every cell of the row Add the ALIGN= center subcommand to the other opening tags from Periods Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button Look at Figure 6. Figure 6: The labels and data in the each row should be centered. The table itself is centered. Exercise 24 Page 12

13 Inserting a Row of Merged Cells Well, now that you have a doggone good table, you may want to add a couple more cells to provide some additional information. You can merge two or more cells, which is handy for grouping information or just making the table look interesting. COLSPAN= n indicates column that should span a certain number of columns (like a merged cell) 153. Click the Notepad button on the Taskbar To create a new row made of merged cells, make the following changes to your after your opening <TABLE> tag: <TABLE BORDER="3" WIDTH="600" CELLSPACING="5" CELLPADDING="3" ALIGN="center"> <TD COLSPAN="4" ALIGN="center"><B>200_-200_ Program</B></TD> <TR ALIGN="center"> <TD><B>Period</B></TD> <TD><B>Course</B></TD> <TD><B>Teacher</B></TD> <TD><B>Room</B></TD> The new Row 1 spans 4 columns. Add the school year in between the <TD> </TD> tags Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button The new row with one merged cell should be visible Look at Figure 7. Figure 7 Adding the Teacher Hyperlinks Andrew, Schaefer, and Rubin have Web pages. You can add hyperlinks to a table within the <TD> </TD> tags. Here s how to write the code. Remember that the teachers Web pages are in your HTML folder Click the Notepad button on the Taskbar Change the HTML for Andrew s, Schaefer s, and Rubin s cells. Exercise 24 Page 13

14 <TD><A HREF="andrew.html">Andrew</A></TD> <TD><A HREF="schaefer.html">Schaefer</A></TD> <TD><A HREF="rubin.html">Rubin</A></TD> Adding a Final Hyperlink You will next make a two-column table. This hyperlink will connect your first table with your second Type the HTML code below the closing </TABLE> tag </TABLE> <P ALIGN="center"><A HREF="table2.html">Click here to go to Table 2.</A</P> 163. Click File on the Menu bar and select Save Click the Internet Explorer button on the Taskbar Click the Refresh button The hyperlink should be visible Look at Figure 7. Figure 7: The completed table. Exercise 24 Page 14

15 Uploading Your Documents 168. In Internet Explorer, type in the Address bar text box and press Enter Type your user name and password Press Enter or click the Sign in button Under Advanced Toolbox, click. Upload tables.html Upload heading12.gif 172. Click the button to copy the files to the Geocities server A new page will open telling you that you have successfully uploaded the files Click the hyperlink to your home page Click. Printing the Web Page 176. Before printing, click View on the Menu bar, point to Text Size, and select Medium Press Ctrl+P The Print dialog box opens Change the Name to Ireland Change the Number of copies to Click OK Your teacher will go online to check your Web page and mark the grade on the printed copy Close all windows. Exercise 24 Page 15

HTML Exercise 12 Making A Transparent 3-D Heading For The Hyperlinks 3 Page

HTML Exercise 12 Making A Transparent 3-D Heading For The Hyperlinks 3 Page HTML Exercise 12 Making A Transparent 3-D Heading For The Hyperlinks 3 Page This exercise will give you practice downloading and installing your own SuperBladePro presets, creating a transparent heading

More information

HTML Exercise 11 Making A Transparent 3-D Heading For The Hyperlinks 2 Page

HTML Exercise 11 Making A Transparent 3-D Heading For The Hyperlinks 2 Page HTML Exercise 11 Making A Transparent 3-D Heading For The Hyperlinks 2 Page This exercise will give you practice downloading and installing your own SuperBladePro presets, creating a transparent heading

More information

HTML Exercise 9 Making A Transparent 3-D Heading For The Hyperlinks 1 Page

HTML Exercise 9 Making A Transparent 3-D Heading For The Hyperlinks 1 Page HTML Exercise 9 Making A Transparent 3-D Heading For The Hyperlinks 1 Page Paint Shop Pro will make many different kinds of text. Here is a way to make a transparent 3-D heading. The heading must be transparent

More information

HTML Exercise 15 Creating An Engraved Metal Heading For The Text Wrap Page

HTML Exercise 15 Creating An Engraved Metal Heading For The Text Wrap Page HTML Exercise 15 Creating An Engraved Metal Heading For The Text Wrap Page 1. Click Start, point to Programs, point to the Jasc Software folder, and select Paint Shop Pro 7. 2. Maximize the Paint Shop

More information

HTML Exercise 21 Making Simple Rectangular Buttons

HTML Exercise 21 Making Simple Rectangular Buttons HTML Exercise 21 Making Simple Rectangular Buttons Buttons are extremely popular and found on virtually all Web sites with multiple pages. Buttons are graphical elements that help visitors move through

More information

Making Backgrounds With Paint Shop Pro

Making Backgrounds With Paint Shop Pro Making Backgrounds With Paint Shop Pro A good Web site deserves a good background. Whether you decide on a single color, a faded repeated logo, a textured tile, or a border, the background of your Web

More information

HTML Exercise 27 Creating A Van Gogh Background Using Plug-in Filters

HTML Exercise 27 Creating A Van Gogh Background Using Plug-in Filters HTML Exercise 27 Creating A Van Gogh Background Using Plug-in Filters Background pictures need to be small so the Web page will download quickly. The browser automatically will repeat the picture to fill

More information

HTML Exercise 20 Linking Pictures To Other Documents Or Web Sites

HTML Exercise 20 Linking Pictures To Other Documents Or Web Sites HTML Exercise 20 Linking Pictures To Other Documents Or Web Sites Turning pictures into hyperlinks is nearly the same as what you learned in Exercises 4 and 5. If a picture is essential to a Web page,

More information

HTML Exercise 29 Adding JavaScript To Your Web Pages

HTML Exercise 29 Adding JavaScript To Your Web Pages HTML Exercise 29 Adding JavaScript To Your Web Pages Here s Joe Burn s explanation of JavaScript. What is the difference between Java and JavaScript anyway? They are both similar and quite different depending

More information

Creating a Web Page with Microsoft Front Page Express Exercise 1

Creating a Web Page with Microsoft Front Page Express Exercise 1 Creating a Web Page with Microsoft Front Page Express Exercise 1 Today you are going to build your first Web page. Normally, Web pages are written in a language called Hypertext Markup Language (HTML).

More information

Tables *Note: Nothing in Volcano!*

Tables *Note: Nothing in Volcano!* Tables *Note: Nothing in Volcano!* 016 1 Learning Objectives After this lesson you will be able to Design a web page table with rows and columns of text in a grid display Write the HTML for integrated

More information

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

More information

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule MAKING TABLES WITH WORD BASIC INSTRUCTIONS Setting the Page Orientation Once in word, decide if you want your paper to print vertically (the normal way, called portrait) or horizontally (called landscape)

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

Introduction to Microsoft Excel

Introduction to Microsoft Excel Create it Introduction to Microsoft Excel It's the beginning of the year (or you just got your new computer) and you want to create an electronic grade book to keep track of student achievement and do

More information

< building websites with dreamweaver mx >

< building websites with dreamweaver mx > < building websites with dreamweaver mx > < plano isd instructional technology department > < copyright = 2002 > < building websites with dreamweaver mx > Dreamweaver MX is a powerful Web authoring tool.

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

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

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

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

Creating and Editing Images in Paint Shop Pro Version XI. File Types

Creating and Editing Images in Paint Shop Pro Version XI. File Types Creating and Editing Images in Paint Shop Pro Version XI Paint Shop Pro (PSP) from JASC software (http://www.jasc.com) is an imageediting and creation program. You can download a 30-day trial version from

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

FrontPage. Directions & Reference

FrontPage. Directions & Reference FrontPage Directions & Reference August 2006 Table of Contents Page No. Open, Create, Save WebPages Open Webpage... 1 Create and Save a New Page... 1-2 Change the Background Color of Your Web Page...

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

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

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Items needed to complete the Navigation Bar: Unit 21 - House Style Unit 21 - Graphics Sketch Diagrams Document ------------------------------------------------------------------------------------------------

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

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

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images.

The Newsletter will contain a Title for the newsletter, a regular border, columns, Page numbers, Header and Footer and two images. Creating the Newsletter Overview: You will be creating a cover page and a newsletter. The Cover page will include Your Name, Your Teacher's Name, the Title of the Newsletter, the Date, Period Number, an

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 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 layout,

More information

LESSON 3. Coding Tables Continued

LESSON 3. Coding Tables Continued LESSON 3 Coding Tables Continued Lesson Learning Targets I can create a Web page table that displays text and / or images. I can create a Web page table that serves as a menu bar. Creating the Secondary

More information

Introducing Microsoft Excel 2000

Introducing Microsoft Excel 2000 Introducing Microsoft Excel 2000 Microsoft Excel is a spreadsheet and graphing program. It replaces your calculator, ledger, and graphing equipment to help you record, analyze, and represent quantitative

More information

Using Microsoft Word. Tables

Using Microsoft Word. Tables Using Microsoft Word are a useful way of arranging information on a page. In their simplest form, tables can be used to place information in lists. More complex tables can be used to arrange graphics on

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics

FACULTY AND STAFF COMPUTER FOOTHILL-DE ANZA. Office Graphics FACULTY AND STAFF COMPUTER TRAINING @ FOOTHILL-DE ANZA Office 2001 Graphics Microsoft Clip Art Introduction Office 2001 wants to be the application that does everything, including Windows! When it comes

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Get Organized... 1 Create the Home Page... 1 Save the Home Page as a Word Document...

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

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout

More information

Bold, Italic and Underline formatting.

Bold, Italic and Underline formatting. Using Microsoft Word Character Formatting You may be wondering why we have taken so long to move on to formatting a document (changing the way it looks). In part, it has been to emphasise the fact that

More information

Practice Exercises for Introduction to Excel

Practice Exercises for Introduction to Excel Practice Exercises for Introduction to Excel Follow the directions below to create the exercises. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

IX. Format Tips. Row & column autofit

IX. Format Tips. Row & column autofit IX. Row & column autofit Excel rows and columns have a standard height and width. You can check on the height of any row and the width of any column by clicking its header (or any cell) to select it and

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

ENGL 323: Writing for New Media Building a Blog Reader Using Links, Tables, Images, and Frames

ENGL 323: Writing for New Media Building a Blog Reader Using Links, Tables, Images, and Frames ENGL 323: Writing for New Media Building a Blog Reader Using Links, Tables, Images, and Frames Dr. Michael Little michaellittle@kings.edu Hafey-Marian 418 x5917 Office hours: MW 11-12, 1-2, F 11-12; TTh

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

Working with Charts Stratum.Viewer 6

Working with Charts Stratum.Viewer 6 Working with Charts Stratum.Viewer 6 Getting Started Tasks Additional Information Access to Charts Introduction to Charts Overview of Chart Types Quick Start - Adding a Chart to a View Create a Chart with

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

More information

How to Make a Poster Using PowerPoint

How to Make a Poster Using PowerPoint How to Make a Poster Using PowerPoint 1997 2010 Start PowerPoint: Make a New presentation a blank one. When asked for a Layout, choose a blank one one without anything even a title. Choose the Size of

More information

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

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

There are six main steps in creating web pages in FrontPage98:

There are six main steps in creating web pages in FrontPage98: This guide will show you how to create a basic web page using FrontPage98 software. These instructions are written for IBM (Windows) computers only. However, FrontPage is available for Macintosh users

More information

Use signatures in Outlook 2010

Use  signatures in Outlook 2010 Use e-mail signatures in Outlook 2010 Quick Reference Card Download and use a signature template Note This procedure will take you away from this page. If necessary, print this page before you follow these

More information

InDesign CC 2014 Intermediate Skills

InDesign CC 2014 Intermediate Skills InDesign CC 2014 Intermediate Skills Adobe InDesign Creative Cloud 2014 University Information Technology Services Training, Outreach, Learning Technologies & Video Production Copyright 2016 KSU Division

More information

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421

Information Systems Center. FrontPage 2003 Reference Guide for COMM 321 & 421 Information Systems Center FrontPage 2003 Reference Guide for COMM 321 & 421 September 2008 Table of Contents Portfolio Web Sites & Web Pages... 1 Open Your Portfolio Web Site in FrontPage for Editing...

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

Lesson 4 Customize the ToolBox

Lesson 4 Customize the ToolBox Lesson 4 Customize the ToolBox In this lesson you will learn how to: Change the toolbox to be a Floating toolbox or a toolbox anchored on the Sidebar. Change the combo ToolBox size and highlighting. Change

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Part II: Creating Visio Drawings

Part II: Creating Visio Drawings 128 Part II: Creating Visio Drawings Figure 5-3: Use any of five alignment styles where appropriate. Figure 5-4: Vertical alignment places your text at the top, bottom, or middle of a text block. You could

More information

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page Creating a Web Page using Mozilla Composer- A Free Open Source Application Emily Hebard IT Lab School of Information University of Texas at Austin Spring 2003 Objectives Orient to the Mozilla Composer

More information

Beginners Guide to Snippet Master PRO

Beginners Guide to Snippet Master PRO Beginners Guide to Snippet Master PRO This document assumes that Snippet Master has been installed on your site. If not please contact the Bakas IT web team at webreg@bakasit.com.au. Initial Login Screen...

More information

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW STAROFFICE 8 DRAW Graphics They say a picture is worth a thousand words. Pictures are often used along with our words for good reason. They help communicate our thoughts. They give extra information that

More information

Creating a Website in Schoolwires Technology Integration Center

Creating a Website in Schoolwires Technology Integration Center Creating a Website in Schoolwires Technology Integration Center Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Accessing Site Manager... 2 Section Workspace Overview...

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Web Publishing Basics II

Web Publishing Basics II Web Publishing Basics II Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 Create a Site Definition... 3 The Dreamweaver CS4 Interface... 4 Panels are groups of icons

More information

CSC 101: PreLab Reading for Lab #4 More HTML (some of this reading on Tables and Images are based on previous writings of Prof William Turkett)

CSC 101: PreLab Reading for Lab #4 More HTML (some of this reading on Tables and Images are based on previous writings of Prof William Turkett) CSC 101: PreLab Reading for Lab #4 More HTML (some of this reading on Tables and Images are based on previous writings of Prof William Turkett) Purpose: The purpose of this pre-lab is to provide you with

More information

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

More information

Microsoft Excel 2000 Charts

Microsoft Excel 2000 Charts You see graphs everywhere, in textbooks, in newspapers, magazines, and on television. The ability to create, read, and analyze graphs are essential parts of a student s education. Creating graphs by hand

More information

Learning to use the drawing tools

Learning to use the drawing tools Create a blank slide This module was developed for Office 2000 and 2001, but although there are cosmetic changes in the appearance of some of the tools, the basic functionality is the same in Powerpoint

More information

Chapter 11: Going All Out with FrontPage

Chapter 11: Going All Out with FrontPage Chapter 11: Going All Out with FrontPage Creating a Product Page Easy Web Design project, Chapter 11 Most store sites need at least one product page. On the Notebooks Web site, the Products page is divided

More information

HAPPY HOLIDAYS PHOTO BORDER

HAPPY HOLIDAYS PHOTO BORDER HAPPY HOLIDAYS PHOTO BORDER In this Photoshop tutorial, we ll learn how to create a simple and fun Happy Holidays winter photo border! Photoshop ships with some great snowflake shapes that we can use in

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

Libre Writer Exercise - 4

Libre Writer Exercise - 4 Libre Writer Exercise - 4 Aim: Introduction to Writer, importance of Writer as Word Processor, overview of toolbars, saving, accessing files, using help and resources. i). Create a document using the features:

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

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

Creating and Modifying Charts

Creating and Modifying Charts Creating and Modifying Charts Introduction When you re ready to share data with others, a worksheet might not be the most effective way to present the information. A page full of numbers, even if formatted

More information

Introduction to MS Word XP 2002: An Overview

Introduction to MS Word XP 2002: An Overview Introduction to MS Word XP 2002: An Overview Sources Used: http://www.fgcu.edu/support/office2000/word/files.html Florida Gulf Coast University Technology Skills Orientation Word 2000 Tutorial The Computer

More information

Editing and Formatting Worksheets

Editing and Formatting Worksheets LESSON 2 Editing and Formatting Worksheets 2.1 After completing this lesson, you will be able to: Format numeric data. Adjust the size of rows and columns. Align cell contents. Create and apply conditional

More information

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

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

More information

Create and edit text. Create the title text First you ll create the title text for the car rental ad.

Create and edit text. Create the title text First you ll create the title text for the car rental ad. 8 Choose the Pointer tool and click the mask thumbnail in the Layers panel. The Property inspector shows that the mask was applied using its grayscale appearance. The darker pixels in the mask knock out

More information

The Dreamweaver Interface

The Dreamweaver Interface The Dreamweaver Interface Let s take a moment to discuss the different areas of the Dreamweaver screen. The Document Window The Document Window shows you the current document. This is where you are going

More information

Understanding How FrontPage Works

Understanding How FrontPage Works 8.1 LESSON 8 Understanding How FrontPage Works After completing this lesson, you will be able to: Open and preview a FrontPage-based Web site. Open and preview an individual Web page. Look at a Web site

More information

Using Masks for Illustration Effects

Using Masks for Illustration Effects These instructions were written for Photoshop CS4 but things should work the same or similarly in most recent versions Photoshop. 1. To download the files you ll use in this exercise please visit: http:///goodies.html

More information

ENGL 323: Writing for New Media Repurposing Content for the Web Part Two

ENGL 323: Writing for New Media Repurposing Content for the Web Part Two ENGL 323: Writing for New Media Repurposing Content for the Web Part Two Dr. Michael Little michaellittle@kings.edu Hafey-Marian 418 x5917 Using Color to Establish Visual Hierarchies Color is useful in

More information

Lesson 1 Introduction to PowerPoint

Lesson 1 Introduction to PowerPoint Lesson 1 Introduction to PowerPoint What It Is-- Presentation tool that allows you to view slides Can include text, graphics, animation, sound, video, charts, and transitions Can create handouts, speaker

More information

Section 8 Formatting

Section 8 Formatting Section 8 Formatting By the end of this Section you should be able to: Format Numbers, Dates & Percentages Change Cell Alignment and Rotate Text Add Borders and Colour Change Row Height and Column Width

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

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited INTRODUCTION TO MICROSOFT EXCEL 2016 Introduction to Microsoft Excel 2016 (EXC2016.1 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn

More information

Attributes & Images 1 Create a new webpage

Attributes & Images 1 Create a new webpage Attributes & Images 1 Create a new webpage Open your test page. Use the Save as instructions from the last activity to save your test page as 4Attributes.html and make the following changes:

More information

Kidspiration 3 Basics Website:

Kidspiration 3 Basics Website: Website: http://etc.usf.edu/te/ Kidspiration is the visual learning tool for K-5 learners from the makers of Inspiration. With Kidspiration, students can build graphic organizers such as webs, concept

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

Microsoft Powerpoint 2013

Microsoft Powerpoint 2013 Microsoft Powerpoint 2013 Lesson 4 Designing a Presentation 2014, John Wiley & Sons, Inc. Microsoft Official Academic Course, Microsoft Word 2013 1 Objectives 2014, John Wiley & Sons, Inc. Microsoft Official

More information

ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS

ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS ADJUST TABLE CELLS-ADJUST COLUMN AND ROW WIDTHS There are different options that may be used to adjust columns and rows in a table. These will be described in this document. ADJUST COLUMN WIDTHS Select

More information

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

HTML, XHTML, and CSS 8/21/2011. Chapter Objectives. Chapter 4. Chapter Objectives. Chapter Objectives

HTML, XHTML, and CSS 8/21/2011. Chapter Objectives. Chapter 4. Chapter Objectives. Chapter Objectives HTML, XHTML, and CSS Sixth Edition Chapter 4 Creating Tables in a Web Site Using an External Style Sheet Chapter Objectives Define table elements Describe the steps used to plan, design, and code a table

More information

InDesign Tools Overview

InDesign Tools Overview InDesign Tools Overview REFERENCE If your palettes aren t visible you can activate them by selecting: Window > Tools Transform Color Tool Box A Use the selection tool to select, move, and resize objects.

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

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information