在网页中插入css,有如下3种方式
CSS saves a lot of works
1:内联样式表 inline
<body style=”color:red “> suming </body>
2:内部样式表 internal
在<head> css </head>内增加css
<head>
<style type=”text/css “>
</style>
</head>
3:外部样式表 external style sheet
链接到外部的css文件
<head>
<link rel=”stylesheet” type=”text/css” href=”url.css”>
</head>
he file should not contain any html tags.