in reply to Re^2: html to hash table
in thread html to hash table

print $data->{'CS 128 Section 01'}{Time}
If you have more data you can loop thru it:
foreach my $class ( keys %{ $data }) { print $data->{ $class }{Time} # do something else with other items ... }