To create links that point to another location on the same page:
- Use the HTML Attributes tool to give the target an ID (example: myDestination)
- Create a link with the text you want (you will use Canvas to create the original link so initially this can point anywhere)
- Use the HTML Attributes tool to change the href attribute for the link to point to that ID with a # symbol in front of it (example: #myDestination).
Now, anyone that clicks that link will be taken to the element on that page that has the myDestination ID.