A friend of mine wanted to know the html code to open a hyperlink (website link) in a new page so that the reader does not have to navigate away from the page. So here you go, however certain pop-up blockers might block it.
<a title=”test” href=”http://enagar.com” target=”_blank”>My Blog</a>
My Blog
Also you might find this useful to add a small table with columns in your posts.
| no. | col1 | col2 | Remarks |
|---|---|---|---|
| 1. |
<table style=”font-size: 10pt; font-family: ‘Lucida Sans Unicode’; color: navy;” border=”1″ cellspacing=”0″ cellpadding=”1″ width=”700″>
<tbody>
<tr>
<th>no.</th>
<th>col1</th>
<th>col2</th>
<th>Remarks</th>
</tr>
<tr>
<td>1.</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>