what are the steps
to create a table with border of three rows and columns with any data
Answers
Answer:
Tables are used to arrange data in the form of rows and columns. The <TABLE> tag is used to create the table in HTML. Inside the <TABLE> tag each row is defined by <TR> tag. The <TD> defines a data cell inside.
Example :
<TABLE BORDER = "1">
<TR><TD>HTML</TD><TD>CSS</TD><TD>JavaScript</TD></TR>
<TR><TD>Markup Language</TD><TD>Design and layout</TD><TD>Scripting Language</TD></TR>
</TABLE>
Output -
Explanation:
Answer:
You can create a table using the <table> element. Inside the <table> element, you can use the <tr> elements to create rows, and to create columns inside a row you can use the <td> elements. You can also define a cell as a header for a group of table cells using the <th> element.
Explanation:
Plz mark brain list kindly