|
So how would you do it if you have a named anchor of <a id="link"></a> on your page?
Normally you would link to the homepage using that div's id name such as:
<a href="#homepage">home</a> to go to each page of the site.
So if you have the anchor "link" on one particular page, the homepage, how would you link to it since you only have one html file which is index.html?
I tried <a href="index.html#link">
and <a href="homepage#link">
and <a href="#homepage#link">
none worked?
|