diff --git a/includes/html5_tools.drush.inc b/includes/html5_tools.drush.inc
new file mode 100644
index 0000000..b7b176b
--- /dev/null
+++ b/includes/html5_tools.drush.inc
@@ -0,0 +1,31 @@
+<?php
+
+/**
+ * @file
+ * Drush integration for HTML5 Tools module
+ */
+
+/**
+ * Implements hook_drush_command().
+ */
+function html5_tools_drush_command(){
+  $items['html5_tools_modernizr_dl'] = array(
+     'callback' => 'drush_html5_tools_drush_download',
+     'description' => dt('Downloads the Modernizr js file into the HTML5 Base theme.'),
+  );
+  return $items;
+}
+
+/**
+ * Download
+ */
+function drush_html5_tools_drush_download(){
+  $path = drush_get_context('DRUSH_DRUPAL_ROOT') . '/' . drupal_get_path('theme', 'html5_base') . '/js';
+  if (drush_shell_exec('wget -NP' . $path .' http://github.com/Modernizr/Modernizr/raw/2ec8bca2efef3638270ecfb02cea5b7078399913/modernizr.js' )) {
+    drush_log(dt('Modernizr has been successfully downloaded.'), 'success');
+  }
+  else {
+    drush_log(dt('Drush was unable to download Modernizr.'), 'error');
+  } 
+}
+
