Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.52 KB | None | 0 0
  1. <!-- These tags are used to makes notes in the code without it being rendered by the browser -->
  2.  
  3. <!-- Open Table tag and set the peramiters -->
  4.   <table border="0" cellspacing="0" cellpadding="0" width="100%">
  5.     <colgroup>  <!-- Open the part that sets up the columns -->
  6.       <col />  <!-- Column 1 -->
  7.       <col width="600" />  <!-- Column 2 and width within the table tag -->
  8.       <col />  <!-- Column 3 -->
  9.     </colgroup>
  10.     <tr>  <!-- Because colmns are needed everything is on one row -->
  11.       <td align="right">  <!-- First cell -->
  12.         <a href="http://cytu.be/r/WrestleTube">Link 1</a><br />
  13.         <a href="http://cytu.be/r/WrestleTube">Link 2</a><br />
  14.         <a href="http://cytu.be/r/WrestleTube">Link 3</a><br />
  15.         <a href="http://cytu.be/r/WrestleTube">Link 4</a><br />
  16.         <a href="http://cytu.be/r/WrestleTube">Link 5</a><br />
  17.       </td>
  18.       <td>  <!-- Second cell and set to the width of the picture -->
  19.         <a href="http://cytu.be/r/WrestleTube"><img title="Click to Wrestletube" src="http://i.imgur.com/CISHi7i.png" /></a>
  20.       </td>
  21.       <td align="left">  <!-- Third cell -->
  22.         <a href="http://cytu.be/r/WrestleTube">Link 1</a><br />
  23.         <a href="http://cytu.be/r/WrestleTube">Link 2</a><br />
  24.         <a href="http://cytu.be/r/WrestleTube">Link 3</a><br />
  25.         <a href="http://cytu.be/r/WrestleTube">Link 4</a><br />
  26.         <a href="http://cytu.be/r/WrestleTube">Link 5</a><br />
  27.       </td>
  28.     </tr>
  29.   </table>
  30.  
  31. <!-- Close the table tag and that's it -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement