diff --git a/gulp/minify-prod-html.coffee b/gulp/minify-prod-html.coffee
new file mode 100644
index 00000000..5e3b3631
--- /dev/null
+++ b/gulp/minify-prod-html.coffee
@@ -0,0 +1,4 @@
+gulp.task 'minify-prod-html', ->
+ gulp.src 'output_prod/**/*.html'
+ .pipe plugins.htmlmin config.htmlmin
+ .pipe gulp.dest 'output_prod'