External stylesheet included with a link



examples/css/external.html
<link href="external.css" rel="stylesheet">

<h1>This is a red H1 element</h1>

examples/css/external.css
h1 {
  color: red;
}
In most cases people place the link tag inside the head tag, but it also works outside of it.