👉For joining css file to html is:-
<link rel="stylesheet" href="styles.css">
👉what is rel in above element:-
rel="stylesheet": This value of the rel attribute indicates that the linked resource is a stylesheet, specifically a CSS file. It tells the browser that the linked resource should be treated as a stylesheet and applied to the HTML document for styling purposes.
0 Comments