Java: WebView

//Add the below line into your AndroidManifest.xml file or your app will not have internet access.
<uses-permission android:name="android.permission.INTERNET"/>

import android.webkit.WebView;
import android.webkit.WebViewClient;

final WebView wv = (WebView) findViewById(R.id.myWebView);
//The below line tells the system that it must use your WebView to load URLs. 
//Otherwise when you click a link within your WebView it android will ask which browser to open it with.
wv.setWebViewClient(new WebViewClient());
wv.loadUrl("https://www.kidds.co.za");