How to Make Words Clickable
- 1). Open your HTML page in a basic text editor, such as Notepad.
- 2). Locate the words you want to be clickable.
- 3). Type the following code before the words:
<a href="/links/?u=http://www.yourdomain.com/page.html">
Replace the URL above with the destination URL. This can be another absolute URL, which offers the exact address to a page, or you can use a relative URL that addresses the a file on your website relative to the current HTML page. If the page resides in the same directory as your HTML page, you can simply enter the file name, such as "page.html". - 4). Type </a> after the words you're making clickable
- 5). Save the page and upload it to your server. The words surrounded by the code you typed are be clickable.
Source...