内部样式表
你还可以使用 <style>
标记在内部包含 CSS 元素:
<head>
<style type="text/css">
body {
background-color: gray;
}
</style>
</head>
多个内部样式表也可以包含在程序中。
<head>
<style type="text/css">
body {
background-color: gray;
}
</style>
<style type="text/css">
p {
background-color: blue;
}
</style>
</head>