HTML笔记(二) 在HTML中使用CSS

  • 外部CSS:
<head>
    <link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
  • 内部CSS:
<head>
    <style type="text/css">
        body { background-color: red }
        p { margin-left: 20px }
    </style>
</head>
  • 内联CSS:
<p style = "color: red; margin-left: 20px">This is a paragraph</p>

 

posted @ 2015-09-06 23:16  motein  阅读(273)  评论(0编辑  收藏  举报