appending a file

How do I append a header.txt file to files that start with xxx_.? There are 20 different files that start with xxx_.

Thanks

for File in xxx_*;do cat header.txt >> $File; done

HTH