TUTORIALS
Lesson 1
Lesson 2
Lesson 3
Lesson 4
Lesson 5
Lesson 6
Lesson 7
Lesson 8
Lesson 9
Lesson 10

EXERCISES
Exercise 1
Exercise 2
Exercise 3
Exercise 4
Exercise 5
Exercise 6
Exercise 7
Exercise 8
Exercise 9
Exercise 10


TABLE

 -Tables are defined with the <table> tag.
 -A table is divided into rows with the <tr> tag. (tr stands for table row)
 -A row is divided into data cells with the <td> tag. (td stands for table data)
 -A row can also be divided into headings with the <th> tag. (th stands for table heading)
 -The <td> elements are the data containers in the table.
 -The <td> elements can contain all sorts of HTML elements like text, images, lists, other tables, etc.
 -The width of a table can be defined using CSS.
element
Tag Description
<table> Defines a table
<th>  Defines a header cell in a table
<tr> Defines a row in a table
<td> Defines a cell in a table
<caption> Defines a table caption
<colgroup> Specifies a group of one or more columns in a table for formatting
<col> Specifies column properties for each column within a
<thead> Groups the header content in a table
<tbody> Groups the body content in a table
<tfoot> Groups the footer content in a table
<colspan> Merge the columns
<rowspan> Merge rows
<bordersize> Defines the thickness of border
<bordercolor> Defines the color of the border in the table
Copyright � Angel Mae Ruiz(2014)