Table gameplay for HTML
HTML is also available in the table, the general structure is as follows
<!DOCTYPE HTML><HTMLLang= "en"><Head> <MetaCharSet= "UTF-8"> <title>Form</title></Head><Body><TableBorder= "1"> <thead> <TR> <th>Table Header 1</th> <th>Table Header 2</th> <th>Table Header 3</th> </TR> </thead> <tbody> <TR> <TD>Table Structure 1</TD> <TD>Table Structure 2</TD> <TD>Table Structure 3</TD> </TR> <TR> <TD>Table Structure 4</TD> <TD>Table Structure 5</TD> <TD>Table Structure 6</TD> </TR> <TR> <TD>Table Structure 7</TD> <TD>Table Structure 8</TD> <TD>Table Structure 9</TD> </TR> </tbody></Table></Body></HTML>
Write a table tag inside the body tag
Table Label write Thead label and tbody tag represent header and table structure respectively
The TR tag represents the same in the table, and the TD tag represents a column within the table. Th represents the content as the table header, which is the bold center.
Table inside Common parameters
Border= "1" to set the border of a cell
Common parameters in TD label
Colspan= "2" Merges 2 cells across rows.
Rowspan= "2" Merges 2 cells across columns.
Table gameplay for HTML