HTML CSS examples for CSS Widget:Table Header
HTML Table containing headers, table headers, body tag, and table data tag
<html> <head></head> <body> <table border="1"> <tbody> <tr> <th>Lorem ipsum dolor</th> <th>Lorem ipsum </th> </tr> <!--from w w w.j a v a2s. c o m--> <tr> <td>Lore</td> <td> <ul> <li>Lorem </li> <li>Lorem </li> <li>Lorem </li> </ul> </td> </tr> </tbody> </table> </body> </html>