I am getting a HTML string from a web service and load it on an `UIWebView. A Sample html string is like this.
" <div class='wg-rs-workAnniversary'> <div class='greetingtext'><span class='years work-years'>1 <sup>-</sup></span> <span class='event'>Work <br> Anniversary</span></div> <input type='hidden' class='hid-work-years' value='1'/> </div> <div class='wg-rs-btext work-years'>ABC Employee celebrates his 1<sup>-</sup> work anniversary today</div>"
After I loaded it it is just a black text. I want to increase the size of these text, change the color and center it on the UIWebView. How can I do this in swift? Please help me.