链接到新 HTML 页面中的某个部分

Linking to a section within a new HTML page

我正在为一个网站创建一个导航栏,我想要 link 按钮到我主页上的联系部分 (index.html)。目前,如果你在有我的投资组合的页面上,并且想转到这个部分,它只会转到我主页的顶部,而不是位于页面一半左右的联系部分(具有 alt id“#contact.”。 =12=]

目前我的导航栏中有这段代码 class:

<a href="index.html" onclick="w3_close()" class = "bar-item button center">CONTACT</a>

如何让它直接转到具有外部页面上 link 的 ID 的元素?

这样做:

<a href="index.html#contact" onclick="w3_close()" class = "bar-item button center">CONTACT</a>