ESP8266 don't show results in browser

ftech:
i have changed pin and set it as 9 and 10 but still it does not show any output on browser.

Post a link to the tutorial you are following.
I'd have expected to see an esp8266.begin() statement.

As I said before, you can now start embedding debug statements in your code, and look at the output on the serial console: for example:

Serial.begin(9600) ;  // in setup()
. . .
. . . 
Serial.println( webpage ) ;
. . .
// etc. etc.