What's it's answer??...
Attachments:

Answers
Answered by
1
Answer:
Hyperlink ( onpage ),
The name attribute acts like a anchor aka id which you can use to navigate the user to different parts or links of your web page.
Example:
...
<p>
<a name="homelink">Ipsum loreum</a>
</p>
/ * Some large content here * /
<a href="#homelink">Go to home</a>
...
Hope this helps you!
Similar questions