Home > Mobile >  Why is my simple HTML link not working despite seemingly correct code
Why is my simple HTML link not working despite seemingly correct code

Time:02-04

I create a simple one page website with text using Big Rock's webcreator. I tried to link one of the lines one the page using HTML in the following way:

    <a href="iimk.ac.in/faculty-profiles/ASHOK-THOMAS">iimk.ac.in/faculty- 
    profiles/ASHOK-THOMAS</a>

The hyperlink however is not working. I would like to fix the error in the HTML code.

CodePudding user response:

Try this your link is not correct as it doesn't covers the proper URL of the page: iimk.ac.in/faculty- profiles/ASHOK-THOMAS

Visit this link to see the proper working of the hyperlink:
https://i.stack.imgur.com/KFSB9.png

CodePudding user response:

your link is not correct with the https formatting so just use this


    <a href="https://iimk.ac.in/faculty-profiles/ASHOK-THOMAS">iimk.ac.in/faculty- 
    profiles/ASHOK-THOMAS</a>
  • Related