Posts

Showing posts with the label Table tag in html

What is Table Tag in html ?

Image
 Use of table tag in html:  Imagine you’re setting up a fancy dinner party, and you need to organize all your guests. HTML tables are like your seating chart, making sure everyone knows where to sit. Here’s a basic example to get you started:   < h1 > Welcome to the Table Extravaganza! </ h1 >   < table >       < tr >           < th > Name </ th >           < th > Favorite Food </ th >       </ tr >       < tr >           < td > John </ td >           < td > Pizza </ td >       </ tr >       < tr >           < td > Jane </ td >           < td > Sushi </ td >       </ tr > ...