'''What is table?
table is just a chart which contains horizontal as well as vertical data either in forms of number or in form of alphabets or alhpanumeric or with special character'''
To Add such type of tables in html we have idea about <tables>
<tr>
<td>
<th>
. and also have an idea about an attributes like colspan, border, rowspan...
*Lets Check my Code *
Tables:
Tables are used to represent the data in rows and columns.Eg:crickbuzz,screener,school/college yime tables Horizontal lines of information is called row.
Vertical lines of information is called columns. Tables are created by'table tag' each table have rows,which are created by 'tr' tag each row contains either heading or data which are created by 'th' or 'td' tags.
Top comments (0)