你是想把单独的CSS文件合并到HTML文件内吗?在HTML页面内直接加入CSS样式代码?
1,外联式样式表;
<head>
<link rel="stylesheet" href="/css/index.css">
</head>
2,内嵌样式表;
<head>
<style type="text/css">
<!--
p{font:12pxcolor:red}
-->
</style>
</head>
3,元素内定;
<p style="color:redline-height:16px">
4,导入样式表
<head>
<style type="text/css">
<!--
@import url(css/index.css)
-->
</style>
</head>
内嵌样式表和元素内定都是直接将CSS样式写在HTML页面的,纯手打,望采纳,谢谢