I am looking for a way to link to an anchor on another page. I did some research already and added the id
s in question, but it is still not working.
Here is a snippet of the code with the links:
<div class="col-md-15 col-sm-3">
<h5 class="text-info">SALES</h5>
<a href="sales-training-tabs.html" id="#sc">Read More »</a>
</div>
I would like the "Read More" links to direct users to the specified sections on the page being linked. I have several sections on the other page that look like this:
<div class="col-xs-12 col-sm-7 col-lg-12">
<h2 id="#sc">Sales Curriculum</h2>
</div>
How can I link to that particular h2
from the previous page?