I'm looking to create a main menu with two links that will direct users to specific paragraphs on a single page based on the link they click. For example, clicking on the first link should take them directly to the paragraph titled "My Title 1," and clicking on the second link should go to the paragraph titled "My Title 2."
<a> Link to "My Title 1" </a> ...Link 1
<a> Link to "My Title 2" </a> ...Link 2
<h1> My Title 1 </h1>
<p> Here is where I have 500 lines of text. </p>
<h1> My Title 2 </h1>
<p> This section contains 600 lines of text. </p>
Any assistance on how to accomplish this would be greatly appreciated!
Thank you in advance for your help :)