Difference between revisions of "Code Documentation2"

Line 26: Line 26:
  
 
<div class="twoColumns">
 
<div class="twoColumns">
<p> To create a table use the following html code </p>
 
 
<pre>
 
<pre>
 
&#60;table&#62;  
 
&#60;table&#62;  

Revision as of 16:16, 18 November 2015

×

Loading ...

Tables

Tables created within in a page already have styling and will display:

Header 1 Header 2
Content A 1 Content B 1
Content A 2 Content B 2
<table> 

<tr> 
<th>  Header 1  </th>  <th>  Header 2 </th> 
</tr> 

<tr>  
<td>  Content A 1 </td>  <td> Content B 1 </td>  
</tr> 

<tr> 
<td>  Content A 2 </td>  <td> Content B 2 </td> 
</tr> 

</table> 

Layout