use strict;
use warnings;

use HTML::Display;
use LWP::Simple;

my $browser = HTML::Display->new() or die $!;
warn "Displaying HTML using " . ref $browser;

my $location = "http://www.netzmafia.de/index.html";
my $file = "/opt/www/htdocs/index.html";

# display(html => get($location),  location => $location ) ;

# display(html => '<H1>Hi Fan!</H1>' ) ;
 display(file => $file,  location => $location ) ;
