How Can I Create Links to Within the Same Page in HTML

To create a link that simply moves the user to another location on the same page,
create the link that allows you to jump to that section.

The link will jump to the section on the page named choose_name,
but firstt the section named choose_name must be created for it to work.
A link by itself does nothing unless there's a section that the link goes to.

Below is an example of links to within the same page:

List of links
First Link
Second Link
Third Link

Let's create one ourselves.

This is the list of links

First Link
Here you can add a paragraph.

Second Link
Here you can add a paragraph.

Third Link
Here you can add a paragraph.

The HTML code to produce the above content is shown below: