rukunga ephantus
rukunga ephantus

Reputation: 3

Nav link menu linking to a section in the same page

I am working on my first html web code. How do I link the nav link menus to the section containing the real text within the same page.

I used <a href="#about.html">About</a> but it didn't work.

Upvotes: 0

Views: 714

Answers (1)

Tom
Tom

Reputation: 5677

Use the id selector href="#idOfTargetedElement", see example below :

h1 {
  margin-top: 1000px;
}
<a href="#about">About</a>
<h1 id="about">About</h1>

Upvotes: 1

Related Questions