Import CSS file into HTML
Question:
How to import CSS file into HTML? Answer:
<link href="style.css" stylesheet" />
Description:
The HTML External Resource Link element <link>
specifies relationships between the current document and an external resource. This element is most commonly used to link to stylesheets, but is also used to establish site icons (both "favicon" style icons and icons for the home screen and apps on mobile devices) among other things.
Reference:
Link element reference
Share "How to import CSS file into HTML?"
Related snippets:
Tags:
html, css, import, stylesheet, link Technical term:
Import CSS file into HTML