I don't know html. do you guys know how to create a link that will redirect the view to a different location on the same page. I want to create and index page that will link to items further down the page. how do I do this?
HTML question
Miscellaneous Forums/General Discussion/HTML question Yes, this is one feature of the anchor tag. Check out the third usage example here :
http://www.utoronto.ca/webdocs/HTMLdocs/NewHTML/anchors.html
http://www.utoronto.ca/webdocs/HTMLdocs/NewHTML/anchors.html
You do something like this:
<A HREF="#MyReference">Jump to the MyReference section</A>
And that will lead you this section of the HTML page:
<A NAME="MyReference">This is your reference</A>
Note: The hyperlink uses #, the name definition does not.
<A HREF="#MyReference">Jump to the MyReference section</A>
And that will lead you this section of the HTML page:
<A NAME="MyReference">This is your reference</A>
Note: The hyperlink uses #, the name definition does not.
of if you want to go to a specific section on another page, your hyperlink would add the #MyReference after the filename itself:
<A HREF="otherpage.html#MyReference">Jump to the MyReference section on another page</A>
<A HREF="otherpage.html#MyReference">Jump to the MyReference section on another page</A>