外部样式表

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

内部样式表

<head>

<style type="text/css">
body {background-color: red}
p {margin-left: 20px}
</style>
</head>

内联样式

特殊的样式需要应用到个别元素时,就可以使用内联样式。
<p style="color: red; margin-left: 20px">
This is a paragraph
</p>
<style>     定义样式定义。
<link>  定义资源引用。
<div>   定义文档中的节或区域(块级)。
<span>  定义文档中的行内的小块或区域。
<font>  规定文本的字体、字体尺寸、字体颜色。不赞成使用。请使用样式。
posted on 2017-11-12 17:05  2637282556  阅读(61)  评论(0编辑  收藏  举报