HTML

How to create a jump to link

Jump link is used for jumping between part of a page.

Wonder how to create a jump link?

Ie: jump from the top of the page to the bottom? This will comes handy if you have a very long page.
Or jump to top from the bottom of a page?

How to keep the text in one line inside a table?

Simple, use nowrap tag.

Example:

<table>
	<tr>
		<td nowrap>Do not break this very loooooooooooooooooooooooooooooooooooooong sentence!</td>
	</tr>
</table>