Larissa would like to create a table using html. What tag allows her to add rows?.

Sagot :

<tr>: The Table Row element

Table

A table is a collection of data organized in rows and columns. Tables are useful for showing relationships between data types, such as products and their costs, rental and charter dates, flights, and departure times.

An HTML table is created with an opening <table> tag and a closing </table> tag. Within these tags, use the table row start and end tags <tr> and table data start and end tags <td> to organize data into rows and columns.

The table row <tr> tag is used to create data rows. Inside a table start and end tags <tr>, table data start and end tags <td> are used to organize data into columns.

Learn more about HTML: https://brainly.com/question/4056554

#SPJ4