Home
HTML
HTML Table
Example 3: HTML Table
Run ❯❯
<!DOCTYPE html> <html> <head> <title>Table td Example</title> <style> table, td { border:1px solid black; } </style> <head> </head> <body> <h1>Table td Example</h1> <table> <tr> <td>Stackoverflow</td> <td>Github</td> <td>W3schools</td> <td>ResultUniversity</td> </tr> </table> <p>Notice that each td element has created one cell. For better understanding we have applied style on table and td element.</p> </body> </html>