While using WebView, we usually put a URL for it:
WebView.loadUrl(myURL);
but it is possible to put HTML code directly?? So that it will be in
String yourhtmlpage = "You scored hello world points."; webview.loadDataWithBaseURL(null, yourhtmlpage, "text/html", "UTF-8", null);