To add style to an HTML element, start with the style
attribute.
<body>
<h1 style>Flowers by Ana</h1>
</body>
Since style
is an attribute, we'll need the =
sign and quotes ""
to give it a value.
<body>
<h1 style="">Flowers by Ana</h1>
</body>