How do I make the buttons in the code fragment below appear bold?
$s .= "\n";
# submit buttons
my %buttonNames = (
'a' => 'a',
'b' => 'b',
'c' => 'c',
);
my $buttonName = $buttonNames{$action};
$s .= $cgi->submit(
-style=>'width: 95;',
-value=>$buttonName
);
$s .= "\n";
# submit buttons
my %buttonNames = (
'a' => 'a',
'b' => 'b',
'c' => 'c',
);
my $buttonName = $buttonNames{$action};
$s .= $cgi->submit(
-style=>'width: 95;',
-value=>$buttonName
);