Working with Web Tables

Slides:



Advertisements
Similar presentations
Tutorial 3 – Creating a Multiple-Page Report
Advertisements

INTRODUCTORY Tutorial 8 Creating Data Tables. XP Objectives Contrast data tables with layout tables Create a table to display and organize data Provide.
Use Tables for Layout Control Day 7. You will learn to: Understand Tables Create a Simple Table Modify Your Tables Appearance Create Page Layouts with.
XP Tutorial 4New Perspectives on Creating Web Pages with HTML, XHTML, and XML 1 Designing a Web Page with Tables Tutorial 4 Creating a News Page.
HTML Tables Introduction to Tables Introduction to Tables Table Format Table Format Table Captions Table Captions Table Example Table Example Excercise.
Designing Web Pages Tables part one. Using Tables for Page Layout 2.
Tutorial 5 Working with Web Tables
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 6: HTML Tables.
Creating Special Effects with CSS
Creating Tables Text Tables -created by using preformatted tags. Graphical Tables - created using Table Structure with HTML.
Tutorial 4: Designing a Web Page with Tables
16 HTML Tables and Frames Section 16.1 Create a basic table using HTML Define borders Merge cells Align content in tables Section 16.2 Create a frames-based.
XHTML1 Tables and Lists. XHTML2 Objectives In this chapter, you will: Create basic tables Structure tables Format tables Create lists.
Introducing Web Tables
XP Creating Web Pages with HTML Using Tables. XP Objectives Create a text table Create a table using the,, and tags Create table headers and captions.
Using HTML Tables.
Notes Ch. 12—Creating Tables Web Page Design. Why Use Tables? Tables are used to create a variety of items such as calendars, charts, and spreadsheets.
INTRODUCTION TO WEB DEVELOPMENT AND HTML Lecture 06: Tables - Spring 2011.
HTML Tables and Forms Creating Web Pages with HTML CIS 133 Web Programming Concepts 1.
Using HTML to Create Tables in Web pages Connie Lindsey November 2005.
HTML Essentials Tables and Table Tags. Overview Use of Tables goes beyond tabulating data Frequently used to format Web pages / control layout Especially.
Tutorial #8 – Creating Data Tables. Tutorial #6 Review – Layouts Two Column Fixed Width, Three Column Fixed Width Class VS. ID Container Universal Selector.
Chapter 5 Working with Tables. Agenda Add a Table Assign a Table Border Adjust Cell Padding and Spacing Adjust Cell Width and Height Add Column Labels.
XHTML1 Tables N100 Creating a Simple Web Page. XHTML2 Creating Basic Tables Tables are collections of rows and columns that you use to organize and display.
Identifies the Structure Table Row Column 1 Table Heading Column 2.
CIS 1315 – Web Development for Educators CIS 1315 HTML Tutorial 5: Working with Tables.
1 The Structure of a Web Table beginning of the table structure first row of three in the table end of the table structure table cells You do not need.
Bayu Priyambadha, S.Kom. for long documents, you can even have links to other locations in that same document  … where ident is a variable for identifying.
CHAPTER 11 Tables. How Are Tables Used Data Display  Very tidy and very useful Better Text Alignment  Putting text in tables allows you to format indents.
XHTML Tables. Tables create little boxes in which you can place things to keep them organized. The little boxes are called table cells. Tables are created.
Tutorial 6 Creating Tables and CSS Layouts. Objectives Session 6.1 – Create a data table to display and organize data – Modify table properties and layout.
HTML Line Breaks and HTML Horizontal Rules (Lines)
INTRODUCTORY Tutorial 7 Creating Tables. XP New Perspectives on Blended HTML, XHTML, and CSS2 Objectives Discern the difference between data tables and.
Tutorial 5 Working with Web Tables. XP Objectives Explore the structure of a Web table Create headings and cells in a table Create cells that span multiple.
Principles of Web Design 6 th Edition Chapter 10 – Data Tables.
Internet Skills An Introduction to HTML Alan Noble Room 504 Tel: (44562 internal)
HTML: Tables & Frames Internet Technology1. HTML: Tables Table tags ► surround the entire table ► header row (text is boldfaced) ► surround each row ►
Designing a Web Page with Tables. A text table: contains only text, evenly spaced on the Web page in rows and columns uses only standard word processing.
Tutorial 5 Working with Tables and Columns
Tutorial 5 Working with Tables and Columns
HTML: Tables & Frames Internet Technology.
Introducing Web Tables. Tables for tabulating items  Better looking  More flexibility  More efficient to explain information than plain text.
Tutorial 5: Tables Session OBJECTIVES Marking row groups Marking column groups Setting the table frame Specifying the table’s internal gridlines.
TABLES 1. In this chapter you will learn that tables have many uses in HTML. Objectives: Upon completing this section, you should be able to: 1. Insert.
ECA 228 Internet/Intranet Design I Tables. ECA 228 Internet/Intranet Design I Basic HTML Tables Created as a way to present rows and clumns of data.
Tutorial 5 Working with Web Tables. XP Objectives Explore the structure of a Web table Create headings and cells in a table Create cells that span multiple.
CIS234A- Lecture 7 Instructor Greg D’Andrea. Tables A table can be displayed on a Web page either in a text or graphical format. A text table: – contains.
Tables in HTML. Table Tag HTML tables always begin and end with a table tag. Syntax:
CIS234A Lecture 8 Instructor Greg D’Andrea. Review Text Table contains only text, evenly spaced on the Web page in rows and columns uses only standard.
Unit 4 Create and Use Tables. TITLE CORNELL NOTES TOPIC: NOTES: Name: Date: 09/08/2009 Period : Summary: Reasons for using tables Unit 4 Page 1 Display.
1 HTML Tables. 22 Objectives You will be able to Create tables in HTML.
Web111a_chapt04.ppt HTM: Section 4 Tables Table Types Text table elements Easy to use Use fixed-font text (font family monospace) Andale Mono Courier Monaco.
Copyright © 2012 Certification Partners, LLC -- All Rights Reserved Lesson 5: HTML Tables.
TABLES. Session Checklist ► Learn the ways that tables can help you organize data on your Web site ► Learn how to prepare a spreadsheet-like table that.
Tutorial 5 Working with Web Tables. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition 2 Objectives Learn and Apply the structure of.
Laying out Elements with CSS
Tutorial 5 Working with Web Tables
Designing a Web Page with Tables
Working with Tables: Module A: Table Basics
Positioning Objects with CSS and Tables
LAB Work 02 MBA 61062: E-Commerce
Tutorial 5 Working with Tables and Columns
Tutorial 5 Working with Web Tables
The Internet 10/25/11 XHTML Tables
Tables:.
Using HTML Tables SWBAT: - create tables using HTML
For the World Wide Web Styling Tables with CSS
Site Development Foundations Lesson 6
Lesson 5: HTML Tables.
Positioning Objects with CSS and Tables
Presentation transcript:

Working with Web Tables Tutorial 5 – Session 2 Working with Web Tables

Objectives Format a table using HTML attributes Format a table using CSS styles Collapse table borders Display page elements in tabular form New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with HTML Attributes The amount of space between table cells is known as the cell spacing The cell padding is the space between the cell contents and the cell border New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with HTML Attributes To define the padding within table cells, add the attribute <table cellpadding="value"> ... </table> to the table element, where value is the size of the padding space in pixels To define the space between table cells, add the attribute <table cellspacing="value"> ... </table> to the table element, where value is the space between table cells in pixels New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with HTML Attributes To set the width of the table to a specific value, add the width attribute <table width="value"> ... </table> Many browsers also support the height attribute <table height="value"> ... </table> You can use HTML to set the row heights by applying the height attribute <tr height="value"> ... </tr> New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with HTML Attributes A table frame specifies which sides of the table (or which sides of the table cells) will have borders <table border="value" frame="type"> ... </table> New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with HTML Attributes New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with HTML Attributes A table rule specifies how the internal gridlines are drawn within the table <table border="value" rules="type"> ... </table> New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with HTML Attributes By default, browsers horizontally center the contents of table header cells and left-align the contents of table data cells To control the horizontal alignment align="position“ To control the vertical alignment valign="position" New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with CSS Starting with CSS2, Cascading Style Sheets included support for Web tables You can apply one set of borders to the Web table itself and another set of borders to the individual cells within the table New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with CSS To define the border model used by the table, apply the table style border-collapse: type where type is separate (the default) to keep all borders around cells and the table itself, separate, or collapse to merge all adjacent borders To set the space between separated borders, apply the table style border-spacing: value where value is the space between the borders in any of the CSS units of measure New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with CSS The most general styles are those applied to the entire table New Perspectives on HTML and XHTML, Comprehensive

Formatting Tables with CSS To position a table caption, apply the style caption-side: position where position is top or bottom New Perspectives on HTML and XHTML, Comprehensive

Applying Table Styles to Other Page Elements New Perspectives on HTML and XHTML, Comprehensive

Applying Table Styles to Other Page Elements New Perspectives on HTML and XHTML, Comprehensive