1.链入外部样式表,就是把样式表保存为一个样式表文件,然后在页面中用<link rel="stylesheet" type="text/css" href="*.css">链接这个样式表文件.
    2.内部样式表,就是把样式表放到页面的<head>区里.
    3.导入外部样式表,用@import,在<head>与</head><style type="text/css">
                      <!--
                         @import "*.css"
                      -->
                       </style>
    4.内嵌样式,就是在标签内写入style="",比如:
      <td style="border-left:#cccccc">设置表格左边框的颜色为灰色.