+ 1
What's a difference between <a></a>tag and <link tag in html?
5 Antworten
+ 8
// The <a> tag is used to create a link (to go to the other website).
// The <link> tag is used to make a link to CSS file.
+ 5
An <a> tag is used only in the body section of a web page as a link to another web page
A <link> tag is used only in the header section to link in othere resources ie stylesheet. CSS file
+ 4
Dont get it wrong, link tag is not for generate website link in html. It's actually used for linking css file to html.
+ 1
Rstar Thanks😊