Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 810 Bytes

day7.md

File metadata and controls

18 lines (14 loc) · 810 Bytes

Today I learned how to implement tables. They are a lot like list elements. In the simplist form you can start with

as the surrounding element like you would use
    or
      . Within you have which displays a row of content. The difference is you place within to create the cells of a row and fill them with content. When everything is put together, it will look like the example below...

      Name Age Weight
      Johnny 34 165

      This will display a description of each cell name, weight, and age and fill in data the next row below them. I also learned you can use element to create table headers in bold font.