Can anyone help me with add html file in webview? I want to present html data with my options of text size, font and image size.
I have this html code, it works when I add it in local file :
<style type="text/css">
img {
max-width: 348px !important;
}
body {
font-size: 15px !important;
font-size: HelveticaNeue !important;
}
</style>
My question is how add this html code to each file I load from URL with swift?