Browser

Provides intents
Provides intent actions: 
Provides intent URIs: 
Uses intents of other applications
Uses intent actions: 
Uses intent URIs: 

Web browser.

This is Android's default web browser, based on the WebKit browser engine.

Browser

To open a web site use:

Intent i = new Intent(Intent.ACTION_VIEW);
Uri u = Uri.parse("http://www.openintents.org");
i.setData(u);
startActivity(i);