CSS in elements
- CSS can be added to individual HTML elements.
- CSS can be embedded in the HTML file in a separate section.
- CSS can be included from an external file.
examples/csses/intro_in_tag.html
<html> <head> <title>Text on the tab</title> </head> <body> <h1 style="font-size:40px">Main title - CSS in HTML element</h1> </body> </html>