+ 2
What is the use of link attribute in html
4 ответов
+ 12
similar posts available , use search bar before posting ur question.
hope , it may helps u
https://www.sololearn.com/discuss/1897721/?ref=app
https://www.sololearn.com/discuss/737421/?ref=app
https://www.sololearn.com/discuss/1304165/?ref=app
https://www.sololearn.com/discuss/559166/?ref=app
https://www.sololearn.com/discuss/1857739/?ref=app
https://www.sololearn.com/discuss/1374396/?ref=app
https://www.sololearn.com/discuss/2334537/?ref=app
https://www.sololearn.com/discuss/959317/?ref=app
https://www.sololearn.com/discuss/832048/?ref=app
+ 12
The <link> tag defines the relationship between the current document and an external resource.
The <link> tag is most often used to link to external style sheets.
The <link> element is an empty element, it contains attributes only.
+ 7
It is used in the <head> tag as:
<head>
<link href="style.css" type="text/css" rel="stylesheet"><link>
</head>
<link> is used to link css stylesheet with html.
Here value of href is the address of the css code
+ 2
Thanks