在html中引入css的四种方法
09-06-161、行内式。
<div style="color:#FFF;background:#333;">This is a line of text.</div>
2、内嵌式。
<style type="text/css">
.box {
color:#FFF;
background:#333;
}
</style>
3、导入式。
<style type="text/css">
@import url("css/layout.css");
</style>
4、链接式。
<link href="css/layout.css" type="text/css" rel="stylesheet" />

