Computer Science, asked by ahirankashyap3p8batz, 10 months ago

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 patilmanjusha187
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

  1. <table> : It is use to indicate the creation of the table
  2. <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
  3. < tr > : this tag is use to create each row of the table
  4. < 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 >
  5. <td > : it specifies the data within the table
Similar questions