Metodos para aplicar CSS em HTML

Codificação CSS incorporada ao HTML
<style media="screen" type="text/css"> Add style rules here </style>
Link para arquivos de CSS separados
<link rel="stylesheet" type="text/css" href="mystyles.css" media="screen" />
Codificação CSS incorporada as tags de HTML
<h2 style="color:red;background:black;">This is a red heading with a black background</h2>
Importar de codificação CSS arquivos separados
<style type="text/css">
    @import '../css/blog.css'; 
    @import url("blog.css") print;
    @import url("blog.css") projection, tv;
    @import 'blog.css';
    @import url("chrome://communicator/skin/");
    @import "blog.css" screen, projection;
    @import url('blog.css') screen and (orientation:landscape);
</style>

Referências

http://matthewjamestaylor.com/blog/-css

Comentários