diff --git a/footable.module b/footable.module
index 8be4984..bc7217d 100644
--- a/footable.module
+++ b/footable.module
@@ -12,6 +12,21 @@ use Drupal\field\Entity\FieldStorageConfig;
 use Drupal\footable\Entity\FooTableBreakpoint;
 
 /**
+ * Implements hook_help().
+ */
+function footable_help($route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match) {
+  switch ($route_name) {
+    case 'footable.settings':
+      return t('<p>Setup footable for your site.</p>');
+
+    case 'help.page.footable':
+      return t('<p>' . '<strong>About</strong>' . '<br/>' . "<ol>" . "<li>" . 'The FooTable module integrates the FooTable jQuery plugin into Drupal which
+provides a responsive table plugin.' . "</li>" . "<li>" . 'See the README.txt file for detailed installation instructions.' . "</li>" . "<ol>" . '</p>');
+
+  }
+}
+
+/**
  * Display a view as a FooTable style.
  *
  * @see template_preprocess_views_view_table()
