You may be able to edit the settings for your specific linter / checker HTML, but you can also add the following to your .vimrc or enter as a command:
au BufNewFile,BufRead *.html set b:syntastic_skip_checks = 1
au is an autocommand, so when the .html buffer is open, syntax omissions check it. Prefix b: applies only to the current buffer.
source share