①页面内部链接:
<head>
<style type="text/css">
/*Cascading Style Sheets Content*/
</style>
</head>
②外部链接:
<head>
<link rel="stylesheet" type="text/css" href="#">
</head>
注意: rel,type,href缺一不可,否则可能会引用失败!
③标签内联:
<element style="CSS Content">
or
<element property="value">
or
<element style="CSS Content" property="value">
HTML链接/实施CSS的三种方法
原文:http://www.cnblogs.com/johnnyzen/p/7155011.html