Write the HTML code to create a Table and display the class time/routine in a web page. Also add borders around the table.
Answers
Answered by
1
Creating a table
Creating a tableA table is made up of rows and oloums a table in a web page is crated by using <table>tag ,which is container tag
Creating a tableA table is made up of rows and oloums a table in a web page is crated by using <table>tag ,which is container tagThe tag and attributes used to draw table are as follow
- <table> : It is use to indicate the creation of the table
- <caption> : It is use to appreciate a table heading. It has align attribute which can have top or bottom as its values. Top is the default value
- < tr > : this tag is use to create each row of the table
- < th > : It indicate table hadding <th > is gently use for first row coloum content of the table it displays content in the bold format . It can be replaced with< td >
- <td > : it specifies the data within the table
Similar questions