Describe how you would create tables in HTML ?
Answers
Answered by
4
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
Explanation:
please make me a brainlist and thank me
Answered by
2
Answer:
by using the table tag
Explanation:
an example of a simple table is
<html>
<head>
<title>table</title>
</head>
<body>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
Sorry it took long. Please mark this answer as brainliest
Similar questions