Existem os estilos external, internal e inline.
Exemplo external:
< head >
< link rel="stylesheet" type="text/css" href="mystyle.css" >
< /head >
Exemplo internal:
< head >
< style >
body {
background-color: linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
< /style >
< /head >
Exemplo inline:
< h1 style="color:blue;margin-left:30px;" >This is a heading< /h1 >
https://www.w3schools.com/css/css_howto.asp
Gabarito: a)