With find and rm

find . -name "*.html"|xargs rm

# when using a backtick
rm `find . -name "*.html"`
click the source code to copy