Generating HTML Programmatically
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $cgi=new CGI;
print $cgi->header(),$cgi->start_html("Simple Examples");
print $cgi->center("Centered Text");
print $cgi->p("A Paragraph");
print $cgi->br();
print $cgi->b("Bold"),$cgi->i("Italic");
print $cgi->p("A Paragraph",$cgi->sup("A superscript"));
print $cgi->end_html();
Related examples in the same category
| 1. | Pretty print HTML code | | |
| 2. | Generating HTML | | |
| 3. | Write CGI scripts with CGI.pm | | |
| 4. | Producing Human-Readable HTML | | |
| 5. | A Simple CGI Script | | |
| 6. | Hello World in Function-Oriented Fashion | | |
| 7. | Hello World in Object-Oriented Fashion | | |
| 8. | Generates HTML with the use of CGI.pm | | |
| 9. | Generates HTML with the use of CGI.pm using the conventional style | | |
| 10. | Set HTML page title, author name, meta info, background color and link color | | |
| 11. | Create Image map | | |
| 12. | Create Frame set | | |
| 13. | Header, br, ol,li | | |
| 14. | Defines a title, author, base, and target for a document, plus a few metatags and a stylesheet: | | |
| 15. | Add the tag to make our lists more compact by pushing onto the @CGI::Pretty::AS_IS array: | | |
| 16. | Using Perl code align Paragraph tag | | |
| 17. | Set Textarea row and column size by using Perl CGI code | | |
| 18. | Create header 1 using Perl code | | |
| 19. | Authorization-required response | | |
| 20. | Using Perl CGI code to set value to Textarea | | |