how to creat table on html
Answers
Answered by
3
Answer:
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.
Answered by
0
Answer:
here is your answer mate hope you find it useful
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> please mark me brainliest
Similar questions