Posts

Showing posts with the label Table

HTML Table Codes

You can make the table that you want by filling in the table as you wish. < table >    < tr >      < th > Continent < /th >      < th > State < /th >      < th > City < /th >    < /tr >    < tr >      < td > Europe < /td >      < td > Germany < /td >      < td > Hamburg < /td >    < /tr >    < tr >      < td > Asia < /td >      < td > China < /td >      < td > Beijing < /td >    < /tr > < /table > Continent State City Europe Germany Hamburg Asia China Beijing Common HTML Table tags <tr>  - represents rows <td>  - used...