Computer Science, asked by nareshkumar611, 9 months ago

how to create table in html?​

Answers

Answered by Anonymous
8

Answer:

here's ur answer mate.. ..

To create table in HTML, use the <table> tag. A table consist of rows and columns, which can be set using one or more <tr>, <th>, and <td> elements. A table row is defined by the <tr> tag. To set table header, use the <th> tag

\huge\mathfrak\red{THANK \ YOU  FOR \ ASKING}

Answered by aryasugur
2

Answer:

Here is your answer  please mark me brainliest

Explanation:

<!DOCTYPE html>

  <HTML>

   <BODY background="abcde.jpeg">

    <table border=6 bgcolor="pink" border color="pink" cellspacing=20>

     <tr><td bgcolor="blue" width=80 height=70>   </td>

      <th>   </th>

       <th>   </th>

        <th>abc</th>

         </tr>

        <tr bgcolor="cyan">

       <td> 2009 </td>

     <td colspan=2> 2010 </td>

   </tr>

 <tr>

   <td rowspan=3> TOOLS </td>

     <td> abc </td>

       <td> abc </td>

         </tr>

          <tr>

         <td> abc </td>

        <td> abc </td>

        </tr>

     <tr>

   <td> abc </td>

  <td> abc </td>

<td>123 </td>

</tr>

</table>

    </BODY>

        </HTML>

Similar questions