Home > OS >  Multi page site whit link in a section
Multi page site whit link in a section

Time:02-25

I'm creating a site where i have more than 1 page. I have a navbar like this

<nav >

  <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>

i want link the page "ricette" whit the section "about" that is on the homepage.

CodePudding user response:

The code should work

    <nav >
    
      <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>

CodePudding user response:

I think your are creating one page site, so you have to create Home, About, Ricette, Foto, Contact sections in index.html page, after that, assign id to each section in html

Example

<section id="home">...</section>
<section id="about">...</section>

.
.
.
and so on.

I think this will be for you.

  • Related