When I use the validator, it says that
the align attribute on the div element is obsolete. Use CSS instead
What do I do to resolve this?
Add a text-align declaration to a style block for .abcd:
.abcd { text-align: left; }
or set the style of the div itself locally:
<div class="abcd" style="text-align: left;">
Use style attribute. For example:
<div style="text-align:center"></div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With