Reputation: 2257
On my page I have few categories and some content for each
japanese food
some content
American food
some content
Japanese food
some content
On top I want to show link for each of this label
Click to Link : Japanese food , american food, Italian food
How can I do it?
Upvotes: 0
Views: 42
Reputation: 943220
Give the element you want to link to an id
. Then put href="#the_id"
.
e.g.
<a href="#japanese">Japanese food</a>
<!-- etc -->
<section id="japanese">
<h2>Japanese food</h2>
<p>some content</p>
</section>
Upvotes: 5