Week 10.1
Week 10.1
Tables
Table Overview
University of Computer Studies
HTML Group
how to create a basic table with the table, table rows, table column, table caption and table
cells elements
become recognize with coding HTML tables to organize information on a web page
how to compose the table of rows and columns
how to create a table with CSS property
Outlines
HTML Table
HTML Table Elements
HTML Common Table Attributes
HTML Table Examples
Summary
Next Lecture
References
HTML Table
Each individual table cell is at the intersection of a specific row and column
Configure with table, tr, and td elements
Each table begin with a <table> tag and ends with a </table> tag
Each table row begin with a <tr> tag and ends with a </table> tag
Each table cell(table data) begin with a <td> tag and ends with a </td> tag
The caption begins with a <caption> tag and ends with a </caption> tag
HTML Table Attributes
align left(default), right, center Horizonal alignment of the table (absolete in HTML5)
bgcolor Valid color value Background color of the table (absolete in HTML5)
cellpadding Numeric value Specifies the space between the cell content and its border
cellspacing Numeric value Border spacing specifies the space between the cells
HTML Table Examples
Introduce the HTML and CSS techniques used to create and configure table on web pages
Next Lecture