Help for this page

Select Code to Download


  1. or download this
    <table class="table_class">
        <tbody class ="nodeclass" id ="This_Node">
    ...
            <tr class="contentrow">
            <td class="content">
            ...
    
  2. or download this
     .table_class {
        color: blue;
    ...
     .contentrow { margin: 1em; }
     .content { background: silver; }
        ...
    
  3. or download this
    <table class="nodetype2">
        <tbody id ="This_Node">
    ...
            <tr>
            <td><p>
            ...
    
  4. or download this
     .nodetype2 { color: blue; background: white; }
     .nodetype2 th { background: silver; }
     .nodetype2 p { color: black; }
     #This_Node h2 { font-size: 120%; }
     ...