1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

HTML How do you use the html inputs to position html correctly within a segment?

Discussion in 'Web Development' started by Anna Hussie, Apr 7, 2011.

  1. Anna Hussie

    Anna Hussie Banned

    In Yahoo sitebuilder, I want to add html to create a link from one part of a page to another. I know the html and when I add it using the 'HTML properties' window, I can position it at the beginning or the end of the segment. How do I place it where I need it? I also tried Insert, Code elements, and HTML, created the html block but can't learn how to place it where I want it. Help, please.
     
  2. Geoff Tyrer

    Geoff Tyrer Member

    I don't know anything about Yahoo SiteBuilder but in regular HTML you use the <a> tag and it's bookmark feature, along the following lines:

    <a name="top">Title Text here</a> <!-- this bookmarks the taget location -->

    <a href="#top">go to top</a> <!-- this is the link to the target location -->