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.

    1 answer 1

    the answer came unexpectedly, indicated in the first parameter of the LoadDataWithBaseURL method a link to the site root

     Document doc = Jsoup.connect("https://site.ru/page/page").get(); webView.loadDataWithBaseURL("https://site.ru", doc.outerHtml(), "text/html", "UTF-8", null); 

    and styles started to appear normally