0
What is the difference between <link href> and <a href>? How do i link 1 or more than 1 particular css document to a html one?
<link href> and <a href>
4 Answers
+ 2
TheĀ anchor element isĀ used toĀ linkĀ to another page or to a certain part of the page if you use its ID. And TheĀ link tagdefines aĀ link betweenĀ a document and an external resource. TheĀ link tag isĀ used toĀ linkĀ to external style sheets.
+ 1
Use the following syntex to link different css documents to your page
<linkĀ rel="stylesheet"type="text/css"Ā href="sample.css">
0
Oh, wow. Thanks!š
0
U r welcome