Why is it happening?
public class MainActivity extends Activity
    {
    WebView browser;
    @Override
    public void onCreate(Bundle icicle)
    {
        super.onCreate(icicle);
        setContentView(R.layout.activity_main);
        //browser.getSettings().setJavaScriptEnabled(true);
        browser = (WebView)findViewById(R.id.webkit);
        browser.loadUrl("www.microsoft.com");
    }
}
But when I run the Android HTML5 app I get this screen goo.gl/uDkj1
I also tried other possibilities such as http:// in front or end the address with a slash and so on.