#HTML #Create HTML/table, thead, tbody, tfoot, th, tr, td/table Tags used to create the table Tables are made with table tags. Lines are created with tr tags. Cells containing column titles are created with th tags. Cells containing content are created with the td tag. Each column can be separated by thead, tbody and tfoot tags depending on the meaning of each column. Use the colspan attribute w..