I find the use of Perl one of the best choices to write small scripts to get/crawl some data from simple web-sites. There are better solutions for web-sites they rely on non simple html content like selenium, but still, using LWP::Simple is really fast and easy.

To use it, you will probably need to install libwww-perl with your system package manager.

The following code just get the content from the page and searches (by using a simple regex) title of the said page:

use LWP::Simple;
$content = get("http://www.sn.no/");
die "Couldn't get it!" unless defined $content;
if($content=~/<title>(.*)<\/title>/){
print $1."\n";
}