I am loading a remote url in WKWebview where only content is text. Text is loading properly but there in site they used 'Nunito' font, which is not showing here in my side. When i open url in browser text are showing properly with font even in safari borowser.
Here is my Code
let urlStr = "http://islamintel.com/cms/about-us"
if let url = URL(string: urlStr) {
let request = URLRequest(url: url)
wkWebView.load(request)
}