Reputation: 3
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
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