Add styles directly to a HTML element
No selectors are used, instead the style
attribute is used, with its value being the declarations
<body>
<div style="color: white; background-color: black;">...</div>
</body>
Notes
- Any inline CSS overrides Internal CSS and Embedded CSS, which can be unexpected
- Can become messy quickly
Related: Internal CSS