Home > Software design >  How to link html tab to anther page
How to link html tab to anther page

Time:11-16

I want to link 2 tabs with 2 pages but it is not working.

<div >

  <div >
    <ul >
      <li >
        <a  href="index.html" data-toggle="tab"> Request Form</a>
      </li>
      <li >
        <a  href="Work-Form.html" data-toggle="tab"> Work Form</a>
      </li>

    </ul>
    <div >

    </div><br></div>
</div>

Switch between 2 pages

CodePudding user response:

Your Code should work if your links are correct. Could you add your file structure? Also what does not working mean is an Error thrown or does nothing happen?

CodePudding user response:

that is not how href="" works.

for example

<a  href="https://www.google.com" data-toggle="tab"> this is my link</a>
  • Related