219k views
0 votes
You are creating a web page as part of a science project. Your role is to put your data on the webpage. You tracked the growth of 10 different plants, recording growth at 8 different points in time. Describe the best way to put this information on a web page. Include at least three tags that you would use.

2 Answers

2 votes

A table element would be created with a table tag. In a row element, a tr tag is used, in a cell division, a <td> tag is used, and in a line break, a <br> tag is used.

For each plant, there would be 10 rows, and for each point in time, there would be 8 columns.

It is a pleasure to work with you :)

User Zrbecker
by
5.0k points
3 votes

The best way to represent this information on a web page is to put it on a table. I would use the <table> tag to create the table element. The <tr> tag for creating a series of row elements, the <td> tag to create cell divisions and the <br> tag for a line break.

I would use 10 rows for different plants and 8 columns for different points in time.

Hope this helps :)

User Kanaya
by
5.3k points