Tables
In organizing some data, we sometimes use tables for it to look formal and organized. In HTML, you can make a table with data that you want to input here.
Tables are defined with the < table > tag.
It is separated into rows with the< tr > tag. (tr stands for table row)
A row is separated into data cells with the < td > tag. (td stands for table data)
A row can also be separated into headings with the < th > tag. (th stands for table heading)
*The
*The