-4

How Could I make This Redirect To Another (External) Website, unsure

<li class="nav-item">
<a class="nav-link" href="#news">Link Accounts</a>
</li>
Marco Sacchi
  • 712
  • 6
  • 21
  • Simply add social media links, or any website url inside href attribute, ex: `href="https://www.youtube.com/ncxsio"`. Check [here](https://www.w3schools.com/html/html_links.asp) for more details about html links. Please do some research before asking. – NcXNaV Sep 25 '21 at 18:45
  • 1
    Please be precise in formatting the post content, some of the code was not visible to other users. – Marco Sacchi Sep 26 '21 at 10:58
  • Does this answer your question? [Usage of Hash(#) in URL](https://stackoverflow.com/questions/21850093/usage-of-hash-in-url) – kognise Sep 26 '21 at 16:52

1 Answers1

1
<a class="nav-link" href="EXTERNAL_WEBSITE_LINK_HERE">Link Accounts</a>

Eg:

<a class="nav-link" href="https://www.google.com">Link Accounts</a>
Mehul Thakkar
  • 2,177
  • 13
  • 22