HTML CSS examples for HTML Tag:td
Adding Some Longer Cell Content
<!DOCTYPE html> <html> <head> <title>Example</title> </head> <body> <table> <tbody> <tr> <td>Col 1</td> <td>Col 2</td> <td>Col 3</td> </tr> <tr> <td>Col 1</td> <td>Col 2</td> <td>Col 3</td> </tr> <tr> <td>Col 1</td> <td>Col 2</td> <td>Col 3 this is a test this is a test</td> </tr> </tbody> </table> </body><!--from w w w.j a va 2 s .c om--> </html>