We can download the source of the page using wget or curl , but I want to extract the source of the page without tags. I mean extract it as text.
wget
curl
You can pipe to a simple sed command :
curl www.gnu.org | sed 's/<\/*[^>]*>//g'