Computer Science, asked by vansh9769, 4 months ago

Create following table and write HTML code

Student Name Grade

Rahul A class 8​

Answers

Answered by divyansheedhandole
0

Answer:

it's of computer subject read the lesson it will in that

Answered by shriya1323
3

Answer:

Hope this helps you

Explanation:

The basic structure of an HTML table consists of the following tags:

Table tags:  <TABLE> </TABLE>

Row tags:   <TR> </TR>

Cell tags:    <TD> </TD>

Constructing an HTML table consists of describing the table between the beginning table tag, <TABLE>, and the ending table table tag, </TABLE>. Between these tags, you then construct each row and each cell in the row. To do this, you would first start the row with the beginning row tag, <TR>, and then build the row by creating each cell with the beginning cell tag, <TD>, adding the data for that cell, and then closing the cell with the ending cell tag, </TD>. When you finish all of the cells for a row, you would then close the row with the ending row tag, </TR>.Then, for each new row, you would repeat the process of beginning the row, building each cell in the row, and closing the row.

The following table is an example of a basic table with three rows and two columns of data.

Data 1Data 2Data 3Data 4Data 5Data 6

The codes that generated this table look like this:

<TABLE>

   <TR>

      <TD>Data 1</TD>

      <TD>Data 2</TD>

   </TR>

   <TR>

      <TD>Data 3</TD>

      <TD>Data 4</TD>

   </TR>

   <TR>

      <TD>Data 5</TD>

      <TD>Data 6</TD>

   </TR>

</TABLE>

This table contains no border, title, or headings.  If you wish to add any of these elements to your table, you need to include additional HTML codes.  The codes for these elements are explained in the next section.

Adding a border, title, and headings

In addition to the basic table tags, several options are available for adding additional elements to your table. For example, if you add a border, title, and column headings to the table in the previous section, the table would then resemble the following:

TABLE TITLE

Column AColumn BData 1Data 2Data 3Data 4Data 5Data 6

The following codes generated the border, TABLE TITLE, and Column A and Column B headings for this table:

<TABLE  BORDER="5">

   <TR>

      Please mark me as the BRAINLIEST

Similar questions