Tables are defined with the <table> tag.
a table is divided into Row (<tr> tag) and each row is divided into cells (<td> tag) td stands for "table data" and hold the content of a data cell. A <td> tag can contain text, link, images, lists, forms, other tables etc.
A hyperlink (links) is a word, group to words, or image that you can click on to jump to a new document or a new section with in the current document.
when you move the cursor over a link in a webpages, the arrow will trun into a hand.
Link are specified in HTML using the <a> tag.
the <a> tag can be used in two ways.
1. to create a link to another document by using the href attributes.
2. to create a bookmark inside a document by using the name attribute.
HTML link
<a hrefd="url">link name </a>
Example
<a href="http://www.google.com"> Go to google</a>
If you use "_blank" the link will open in a new window or tab.
Example
<a href="http://www.google.com" target="_blank">Go to google</a>