有三种方法应用css

(1)行内样式

<p style="color:red">text</p>

(2)内部样式

<style type="text/css">

p{

color:red;

}

</style>

(3)外部样式

p{color:red;}

保存为web.css文件

在<head>区加入

<link rel="stylesheet" type="text/css" href="web.css" />