- use CGI:
- Include CGI module in perl program
- $cgi = CGI->new;
- Initialize CGI session
- print $cgi->-header
- Print HTML header. Mandatory
- $cgi->p(“content”)
- Output: <p>content</p>
You can put all CGI calls in one print command, separating them with commas