內部樣式表
你還可以使用 <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>