user2129623
user2129623

Reputation: 2257

Creating links in same html page

On my page I have few categories and some content for each

  1. japanese food

    some content

  2. American food

    some content

  3. 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

Answers (1)

Quentin
Quentin

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

Related Questions