Fixes issue:
The earlier code made use of deprecated html tags and attributes like <font> and <center>
Changes:
Style based concerns were shifted to CSS. For example, instead of <center>, text-align: center and margin: 0 auto;
were applied to the child element (there was coincidentally just a single child in almost all cases).
Fixes issue: The earlier code made use of deprecated html tags and attributes like <font> and <center>
Changes: Style based concerns were shifted to CSS. For example, instead of <center>, text-align: center and margin: 0 auto; were applied to the child element (there was coincidentally just a single child in almost all cases).