HTML Link

HTML CODE
<a href="Target url">Link text</a>
Example
<a href="http://sl-it-help.blogspot.com">Visit Online IT Academy</a>

Preview  

Visit Online IT Academy

TABLE WITH CAPTION


Example 
<table border="1">
  <caption>Exam Result </caption>
  <tr>
    <th>Subject</th>
    <th>Marks</th>
  </tr>
  <tr>
    <td>English</td>
    <td>80</td>
  </tr>
  <tr>
    <td>Moths </td>
    <td>60</td>
  </tr>
  <tr>
    <td>Art </td>
    <td>50</td>
  </tr>
</table>

Preview
Exam Result
Subject Marks
English 80
Moths 60
Art 50