Specifies style sheet rules for a document.
The style element allows authors to include CSS code into the HTML document. The style tag should be placed in the head element.
To insert an external CSS file into the HTML document, use link element.
<head>
<style>
body {
background-color: #FF0000;
}
</style>
</head>
<body>
My background color is red.
</body>