Link CSS stylesheet to HTML
Question:
How to link CSS stylesheet to HTML? Answer:
<link href="style.css" rel="stylesheet">
Description:
The <link>
HTML element specifies relationships between the current document and an external resource. This element is most commonly used to link to stylesheets.
Reference:
The link reference
Share "How to link CSS stylesheet to HTML?"
Related snippets:
Tags:
css, stylsheet, link, rel, html Technical term:
Link CSS stylesheet to HTML