RzeIMz
RzeIMz

Reputation: 50

HTML Section Link on an other HTML-Side

I have two html pages, like index.html and contact.html. On the pages i have the same navbar.

Can i link from contact.html to a section on index.html?

like href="index.html#section", something like this!

Thank you.

Upvotes: 0

Views: 36

Answers (1)

kzhao14
kzhao14

Reputation: 2640

If I understood correctly, you want to link to an element on index.html from contact.html. You can do this by creating an anchor tag (<a>) and setting its href to index.html#elementId.

<a href="index.html#someElementId">

Upvotes: 1

Related Questions