I have a question. I am creating a website and trying to create multiple pages in my website and I wanted it to link up and when you click the button on the nav bar it takes you to the page. And I don’t know how to do that. So could anyone help me.
If you mean something like, creating a link let’s say “Take me to top” and when you press it, it takes you to the top of your page (or another part of the same page). You can add:
<a href="#top">Take me to top</a>
And place this, where you would like the above link to take you:
<a name="top"></a>
Basically, you are targeting ‘top’ in your link, and then, placing an element with name ‘top’.
If I have have five pages that are part of my website, that I want to link to. For example I have about page, articles page, social media page and contact info page. And I create a nav bar and these pages are listed on the nav bar. I want to click the nav bar to go to those pages. So I want to go to the social media page to see what’s on the social media page. How can I do that.