一节中有链接的多页网站



我正在创建一个有1个以上页面的网站。我有一个类似的导航栏

<nav class="navbar">

<a href="#home">Home</a>
<a href="#about">About</a>
<a href="Ricette.html">Ricette</a>
<a href="#foto">Foto</a>
<a href="#contact">Contact</a>
</nav>

我要链接页面";ricette";其中";关于";在主页上。

代码应该能在中工作

<nav class="navbar">

<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#about">Ricette</a>
<a href="#foto">Foto</a>
<a href="#contact">Contact</a>
</nav>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br> //These <br>s are for showing how code works.
<div id="about">Hello</div>

我认为你正在创建一个页面网站,所以你必须在index.html页面中创建Home、About、Ricette、Foto、Contact部分,然后在html 中为每个部分分配id

示例

<section id="home">...</section>
<section id="about">...</section>
.
.
.
and so on.

我想这是给你的。

最新更新