How do I create a hyperlink that returns to the top of the page?

S

Susy

I have hyperlinks that connect to items on the same page. What code do I use
to allow the user to click on the link and they will jump back up to the top
of the page? For example: Top, back, return
 
D

Don Schmidt

Insert this html code fragment on the page. If at first it isn't in the
location you want, you can go back and double click on it and drag to the
location wanted.

Insert
html code fragment

<a href="#top">back to top</a>
 
Top