External stylesheet included with a link
<link href="external.css" rel="stylesheet">
<h1>This is a red H1 element</h1>
h1 {
color: red;
}
In most cases people place the link tag inside the head tag, but it also works outside of it.
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
<link href="external.css" rel="stylesheet">
<h1>This is a red H1 element</h1>
h1 {
color: red;
}
In most cases people place the link tag inside the head tag, but it also works outside of it.