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