How to Hide HTML Forms Admin Menus

function plt_hide_html_forms_menus() {
	//Hide "HTML Forms".
	remove_menu_page('html-forms');
	//Hide "HTML Forms → All Forms".
	remove_submenu_page('html-forms', 'html-forms');
	//Hide "HTML Forms → Add New".
	remove_submenu_page('html-forms', 'html-forms-add-form');
	//Hide "HTML Forms → Settings".
	remove_submenu_page('html-forms', 'html-forms-settings');
	//Hide "HTML Forms → Premium".
	remove_submenu_page('html-forms', 'html-forms-premium');
}

add_action('admin_menu', 'plt_hide_html_forms_menus', 11);

Where do I put this code?