The arduino webclient example https://www.arduino.cc/en/Tutorial/WebClient is a good place to start if all you want to do is have your arduino load a webpage and act on the results.
The trick is to modify the section shown below to look for specific strings and perform related actions.
if (client.available()) {
char c = client.read();
Serial.print(c);
}
See this thread http://forum.arduino.cc/index.php/topic,45629.0.html for ways to turn a bunch of individual chars into a nice String.