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 A-Z List Help

Discussion in 'Web Development' started by Airwalker, Jul 23, 2009.

  1. Airwalker

    Airwalker New Member

    First of all, I am following the Call of Duty 2 Template found on page 7 of the mainpage and I am editing everything via Adobe Dreamweaver...I hope this will help people in answering my question.

    Anyways...

    On one of the pages I am working on, I am going to have the alphabet at the top of the page like so :"A B C D E F G H I J K L M N O P Q R S T U V W X Y Z"

    and I would like it so that it the user is able to click any of those letters and it will automatically take them to that letter's category on the same page (just scrolled down to whichever letter they selected)

    Is there an easy way for me to do this? please and thank you to whomever helps me out with this query.

    Edit:
    I found how how to do it via http://www.yourhtmlsource.com/text/internallinks.html
    Thanks for any and all who intended to help out!
     
  2. boemboem

    boemboem New Member

    Like this? Assuming that you dont use a more difficult template (joomla, drupal etc), just plain html.

    ie: a.html is the page containing all the A's :D etc.. etc..

    Code:
    <a href="a.html" target="_self">A</a> 
    <a href="b.html" target="_self">B</a> 
    <a href="c.html" target="_self">C</a> 
    <a href="d.html" target="_self">D</a> 
    <a href="e.html" target="_self">E</a>