style

The style element is used to define style rules (also known as CSS) for an HTML document. It can be used to apply styles to elements, such as fonts, colors, and layout.

Example:

<style>
element {
color: red;
}
.class {
background-color: blue;
}
#id {
font-size: 20px;
}
</style>