El CSS en línea contiene la propiedad CSS en la sección del cuerpo adjunta con el elemento que se conoce como CSS en línea. Este tipo de estilo se especifica dentro de una etiqueta HTML utilizando el atributo de estilo . Se utiliza para aplicar un estilo único a un único elemento HTML.
Sintaxis:
<tag style = " "></tag>
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <p style="color: #009900; font-size: 50px; font-style: italic; text-align: center;"> GeeksForGeeks </p> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h2 style="color: green; background: yellow"> Geeks For Geeks </h2> <p style="color: black"> Happy Preparation!!. </p> </body> </html>
Producción: