The CGI module from CPAN is the canonical starting point for basic CGI scripts, and there are a lot of reasons to use it versus handling your own param parsing. CGI.pm (the module) handles behind the scenes a lot of things that you don't want to have to build yourself. If you need to maintain state, CGI::Session helps. And if you plan on expanding beyond simple CGI scripting you can plan larger applications around CGI::Application in combination with a templating solution.
For the output side, Template::Toolkit or HTML::Template are commonly used.
There is the somewhat outdated book, CGI Programming with Perl (O'Reilly). Though it is outdated it does give a good overview and starting point for basic CGI. I wouldn't hesitate to recommend purchasing a used copy (there are copies available used online starting for the cost of shipping). It's definitely worth reading through. Even though it doesn't address some of the more modern issues such as Unicode, it still lays out for you the start to finish CGI process. That alone is worth the read.
Perhaps start by reading the POD for CGI, and later for CGI::Session. Build from there.
There is so much more to the "state of the art" nowadays than simple CGI, but you have to start somewhere. If your plan is to develop complex sites, beyond what CGI::Application can facilitate, you'll start wondering about Catalyst, Mojolicious, and other frameworks. But that's a different topic. The old saying from Economists, "It depends..." It depends on what you want to accomplish, whether CGI will be a good fit versus a more robust and scalable framework.