Hello forum,
I want to know how to create a link where when I click on it, I will be redirected to a particular paragraph on another page. For example, I have About page where there are write-ups of 3 paragraphs. Then when I click on a link in the previous page, and I want the command to take me to the second paragraph to read what is in it, then when opening the next page (About us) it will display the second paragraph. Instead of only navigating to page2, it should directly take me to paragraph 2 of page 2
Schema: page1 and page2
Page1 – link (when this link is clicked)
Page2 – paragraph 2 will display in page 2
I hope this is possible?
Page1 HTML
<div class="col-md-3 mx-auto">
<h6 class="font-weight-bold mt-3 mb-4">About</h6>
<ul class="list-unstyled">
<li><a href="Page2.aspx" style="color: steelblue;">Company</a></li>
<li><a href="Page2.aspx" style="color: steelblue;">Documents</a></li>
</ul>
</div>
Page2 HTML
<div class="container">
<div class="row" style="max-width: 100%; font-family: Nunito;">
<div class="auto-style1">
<img id="image1" alt="aboutimg" src="images/frontimg/imgabout.jpg" />
</div>
<div class="writing">
<div class="inner">
<strong><div id="paragrapgh1"></strong>
<p style="margin: 1em auto 2em auto;">
This is where organization profle will be displayed
</p>
</div>
<strong><div id="paragraf"></strong>
<p style="margin: 1em auto 2em auto;">
content about the product and services of the above mentioned organization
</p>
</div>
<p>DOCUMENTS TO USE QR on –</p>
</div>
</div>
<br />
<br />
</div>
</div>