+ 2
What is the main difference between <link> and <a>?
HTML tags
4 odpowiedzi
+ 7
Link is mostly used for importing stylesheets in HTML.
Ex:- <link href="...">
While a is an anchor tag used for redirecting to another webpage, website or somewhere within the page.
Ex:- <a href="...">some text to show</a>
+ 5
Link is used in head, a is used in body.
Link is used for linking files, a is used for linking another web page or to go to specific location of any webpage.
+ 3
Thanks everybody!
0
Thanks bro