Advertisement
Guest User

Untitled

a guest
Jan 15th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. HTML code for the sortable table, wordpress plugin "Table sorter"
  2.  
  3. by holding down the shift key and clicking a second, third or even fourth column header!
  4. <table id="myTable" class="tablesorter">
  5. <thead>
  6. <tr>
  7. <th>Web Hosting Provider</th>
  8. <th>Price</th>
  9. <th>Space</th>
  10. <th>Transfer</th>
  11. <th title="Mails per hous limit">MPH</th>
  12. <th title="Memory limit in megabytes">ML</th>
  13. <th title="Solid state drive is faster than casual HDD">SSD</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr>
  18. <td><!--Hosting name-->Hostgator</td>
  19. <td><!--Price for the cheapest plan-->4.9</td>
  20. <td><!--Disk space-->Unlimited</td>
  21. <td>Unlimited</td><!--Transfer-->
  22. <td title="Mails per hous limit">200</td><!--Mails-->
  23. <td>64</td><!--Memory limit-->
  24. <td>?</td><!--Provider-->
  25. </tr>
  26. <tr>
  27. <td>Namecheap</td>
  28. <td>4.5</td>
  29. <td>10</td>
  30. <td>50</td>
  31. <td>200</td>
  32. <td>32</td>
  33. <td>SSD</td>
  34. </tr>
  35. <tr>
  36. <td>ICPH</td>
  37. <td>0.5</td>
  38. <td>0.1</td>
  39. <td>1</td>
  40. <td>200</td>
  41. <td>64</td>
  42. <td>HDD</td>
  43. </tr>
  44. </tbody>
  45. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement