Where in an HTML document is the correct place to refer to an external style sheet?
An external style sheet usually writes in the <head> section.
<link rel="stylesheet" type="text/css" href="slightbook.css">
above is the correct syntax for importing an external CSS file.
The REL attribute defines the relationship that the linked resource has to be a document from which it is referenced.
Which HTML tag is used to define an internal style sheet?
Which HTML attribute is used to define inline styles?
Which is the correct CSS syntax?
How do you insert a comment in a CSS file?
Which property is used to change the background color?