programming-examples/perl/CGI/Header, br, ol,li.pl
2019-11-15 12:59:38 +01:00

14 lines
303 B
Perl

#!c:/perl/bin
use CGI ':standard';
print header();
print "Here is some ",em("emphasised text "), b("and this is bold.");
print br(), i("This is italic text"), br(), br(), br();
print h3("Languages"),
ol(
li('C++'),
li('PHP'),
li('Perl')
);