get it on google playCreated with Sketch.
CSS> Style attribute

Style attribute

To add style to an HTML element, we start with the style attribute.

Add the word style.

 <body>
  <h1 style>Flowers by Ana</h1>
 </body>

Since style is an attribute, we'll need the = sign, followed by quotes "" to give it a value.

 <body>
  <h1 style="">Flowers by Ana</h1>
 </body>
TRY IT ON THE APP