HTML Table containing headers, table headers, body tag, and table data tag - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Table Header

Description

HTML Table containing headers, table headers, body tag, and table data tag

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials