Advanced Tables.

Slides:



Advertisements
Similar presentations
HTML TABLES EXPLAINED. What is a TABLE? The HTML table allows web designers to arrange & organize data -- text, images, hyperlinks, forms, form fields,
Advertisements

Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything Text Lists Other tables Pictures …
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 6: HTML Tables.
TABLES 6 How to create tables What information suits tables How to represent complex data in tables.
 2001 Prentice Hall, Inc. All rights reserved. Outline 1 Table1.html 1 2
Tables. Tables2 Terminology Caption Headings Cell Data.
What is a TABLE? The HTML table allows web designers to arrange & organize data -- text, images, hyperlinks, forms, form fields, other tables, etc. 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.
1 XHTML Tables A table is a matrix of cells, for displaying content in rows and columns The cells can include almost any element Some cells display row.
XHTML Tables. Tables: Allow us to display information on the page in a uniform fashion. Work well for organizing groups of words, images, and links. Are.
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.
How to create tables in HTML…
Chapter 5 Creating Page Templates
Lecture: Tables. Table Tags (all container tags) establishes a table (________) establishes a row (________) says what’s in the row more than one TD within.
Actual Building the Pages Tables. Using Table Elements  To build effective page templates, you must be familiar with the HTML table elements and attributes.
10/4/2015Tables1 Spring, 2008 Modified by Linda Kenney 4/2/08.
HTML B OOT C AMP Chapter 10 Tables Kirkwood Continuing Education © Copyright 2015, Fred McClurg All Rights Reserved.
Department of Information Technology Chapter 9 – Creating Tables Lecturer: Ms Melinda Chung.
Html Tables Basic Table Markup. How Tables are Used For Data Display Tables were originally designed to display and organize tabular data (charts, statistics,
1 TECH1001 Lecture 6 Electronic Publishing and Production 1 More About Tables.
 2003 Prentice Hall, Inc. All rights reserved. Introduction to HTML: Tables Outline 1 Introduction 2 Basic HTML Tables 3 Intermediate HTML Tables and.
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
1 Tables attributes. 2 Table attributes: border Activates border around cells Syntax: – where “n” is a value in pixels which controls the “thickness”
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.
Chapter 5 Creating Page Templates. Principles of Web Design 2nd Ed. Chapter 5 2 Principles of Web Design Chapter 5 Objectives Understand table basics.
HTML Tables The HTML table model allows authors to arrange data - text, preformatted text, images, links, forms, form fields, other tables, etc. - into.
How To Create HTML Tables. Table Structure General HTML code for a Web Table: table cells table cells.
Introduction to Web Authoring Ellen Cushman our syllabus
Assistant Professor,UCER Naini,Allahabad
Copyright © 2012 Certification Partners, LLC -- All Rights Reserved Lesson 5: HTML Tables.
Make an HTML table using Visual Studio. Approach 1: drag table from Toolbox.
Tables creating a table within a web page. What makes up a table? Columns Rows.
Advanced Tables. Let's build some tables using each of these features and then try combining both features into the same table. Spanning Rows and Columns.
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.
Advanced Tables. Spanning Columns and Rows: So far, our tables have been relatively simple, with a uniform grid of rows and columns: XHTML allows us to.
XHTML Tables.
Advanced Tables.
Organizing Content with Lists and Tables
Web Development & Design Foundations with HTML5
Web Development & Design Foundations with HTML5 8th Edition
Tables and Frames.
Getting Started – Table 2
HTML Tables CS 1150 Spring 2017.
HTML Tables.
H T M L A B E S X P I N D.
HTML Tables CS 1150 Fall 2016.
Creating Tables Steps for creating a Table Important Facts about Table
XHTML Tables.
HTML and CSS 8th Edition Chapter 18: Tables.
Creating Tables Steps for creating a Table Important Facts about Table
Web Design and Development
Basic Tables.
Using rowspan and colspan attributes
Basic Tables.
Advanced Tables.
Implementing Tables to Hold Data in HTML
Using rowspan and colspan attributes
Web Development & Design Foundations with HTML5
H T M L A B E S X P I N D.
Basic Tables.
Site Development Foundations Lesson 6
Creating Tables Steps for creating a Table Important Facts about Table
Lesson 5: HTML Tables.
1.3 TABLES.
H T M L A B E S X P I N D.
Hypertext Markup Language Table 11th Lecture
Web Development & Design Foundations with HTML5
XHTML Tables.
Presentation transcript:

Advanced Tables

Spanning Columns and Rows: So far, our tables have been relatively simple, with a uniform grid of rows and columns: XHTML allows us to create more complex table elements by spanning specified rows or columns:

Spanning Columns: Span 3 Columns R2C1 R2C2 R2C3 R3C1 R3C2 R3C3 <table width="300" border="1"> <tr> <td colspan="3">Span 3 Columns</td> </tr> <td>R2C1</td> <td>R2C2</td> <td>R2C3</td> <td>R3C1</td> <td>R3C2</td> <td>R3C3</td> </table> Span 3 Columns R2C1 R2C2 R2C3 R3C1 R3C2 R3C3 By adding the colspan="3" to the <td> element, we are telling the browser that we want to stretch a single table cell across the space of three columns.

Spanning Rows: Span 3 Rows R1C2 R1C3 R2C2 R2C3 R3C2 R3C3 <table width="300" border="1"> <tr> <td rowspan="3">Span 3 Rows</td> <td>R1C2</td> <td>R1C3</td> </tr> <td>R2C2</td> <td>R2C3</td> <td>R3C2</td> <td>R3C3</td> </table> Span 3 Rows R1C2 R1C3 R2C2 R2C3 R3C2 R3C3 The rowspan="3" in the <td> element accomplishes the same thing, but stretches a cell across multiple rows instead.