+ 29
Anyone explain difference between <link> <a> in html
29 Respostas
- 2
Basically the <link>&<a>tag is similar to each other but the link tag can't creat a clickble link which we will expect. But a tag creat a clickble link..
+ 56
a tag is used to make hyperlinks to other pages while the link tag is used to attach external style sheets to your html document.
+ 25
My pleasure
+ 17
<link> is used to attach Style sheet to HTML code , and use between head tags . for example
<html>
<head>
<link>
</head>
</html>
but <a> is used to attach a link of website , and use between body like that :
<html>
<body>
<a>
</a>
</body>
</html>
+ 15
Thanks to White Hat now I understand clearly
+ 13
link tag is used to attach external stylesheets to d html document however a tag is used to create hyperlink to other pages!
+ 8
<a is used to provide the link to go to another site...
< link is used to provide link to travell within thw web page
+ 7
The <a> tag defines a hyperlink to another web page, while the <link> tag imports an external CSS file.
+ 7
Thanks Madhusudan Saini
+ 7
Thanks @Ashish Kumar Sahoo
+ 6
link is a tag whereas a is the address Linking attribute
+ 6
Thank you Tolu Adesina
+ 6
Thanks Ericka V. Prieto
+ 5
What kind of help you need Jester Mira
+ 4
<a> tag (stands for anchor) is used to make hyperlinks to other pages while the <link> tag (stands for link) is used to attach external style sheets to your html document/webpage.
+ 4
link is used to import external css from the destinated url of the css. while a is used to link to other site pages.
+ 4
hey, everyone's can help me ?
+ 4
about the C++ , Im freshmen ict student
+ 4
<link> is used to attach Style sheet to HTML code , and use between head tags .
For example
<html>
<head>
<link>
</head>
</html>
but <a> is used to attach a link of website , and use between body like that :
<html>
<body>
<a>
</a>
</body>
</html>
This Is The Major Difference.
+ 4
<link> is used to attach style sheet to html code whiles <a>I used to attach a link of a website