Forum Moderators: open

Message Too Old, No Replies

how to create a bookmark link

         

contentmaster

4:17 pm on Dec 7, 2004 (gmt 0)

10+ Year Member



i need to insert a bookmark to some text so that when i click on a link on top of the page, it takes the user to that bookmark which is towards the bottom of the page. However, the link is an image. How do i bookmark an image?

bill

4:48 am on Dec 8, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



In FrontPage:
  1. select your image and then: Insert ¦ Bookmark
  2. ...then select the text you want to link from and: Insert ¦ Hyperlink

In the hyperlink you select place in this document and then select the bookmark you just created.

In HTML all you really have to do is wrap your image with something like this:

<a name="bookmark"> image here </a>

then you'd link to the bookmark like so:
<a href="#bookmark">link text here</a>

contentmaster

2:26 pm on Dec 11, 2004 (gmt 0)

10+ Year Member



thanks it worked :)