I needed to remove the extra blocks from the page.
<div id="">..</div>, I decided to do it through jsoup:
Document doc = Jsoup.connect("https://site.ru").get(); but when displayed in a webview, styles are not displayed (text is displayed, blocks without any indentation, etc.)
webView.loadDataWithBaseURL(null, doc.outerHtml(), "text/html", "UTF-8", null); Something I'm doing wrong, thanks.