Antonis Oulis
Antonis Oulis

Reputation: 31

How can I point from a page a.html to another page b.html

How can I point from a page a.html

To a specific div

<div id="profs">

...

</div>

In another page b.html?

I tried

<a href ="b.html#profs"> link </a> 

but it is not working.

Upvotes: 2

Views: 43

Answers (1)

Michael Banzon
Michael Banzon

Reputation: 4967

You need to use the anchor tag in a.html:

<a name="profs"> ... </a>

Upvotes: 1

Related Questions