to change a background color and insert a table of 3*2 in html
Answers
Answered by
1
Answer:
<HTML>
<BODY bgcolor="color/hexadecimal code">
<TABLE border="1">
<TR>
<TD></TD>
<TD></TD>
</TR>
<TR>
...
...
</TR>
<TR>
...
...
</TR>
</BODY>
</HTML>
Explanation:
It is the required HTML code.
Similar questions