diff --git a/humanstxt.module b/humanstxt.module
index a563d72..7e44db6 100644
--- a/humanstxt.module
+++ b/humanstxt.module
@@ -2,9 +2,51 @@
 
 /**
  * @file
- * humanstxt module file.
+ * Humanstxt module file.
  */
 
+use Drupal\Core\Routing\RouteMatchInterface;
+
+/**
+ * Implements hook_help().
+ */
+function humanstxt_help($route_name, RouteMatchInterface $route_match) {
+  switch ($route_name) {
+    case 'help.page.humanstxt':
+      $output = '';
+      $output .= '<h3>' . t('About') . '</h3>';
+      $output .= '<p>' . t('Helper module to place and manage a <em>humans.txt
+                          </em> file in your site.') . '</p>';
+      $output .= '<p>' . t('For more information, visit the main site of the
+                          project <a href=":url">Humans.txt</a>.',
+                          [':url' => 'http://humanstxt.org/']) . '</p>';
+      $output .= '<p>' . t('You can see an example of the humans.txt file
+                          <a href=":example">here</a>.',
+                          [':example' => 'http://humanstxt.org/humans.txt']) . '</p>';
+      $output .= '<h3>' . t('Questions') . '</h3>';
+      $output .= '<dl>';
+      $output .= '<dt>' . t('What is humans.txt?') . '</dt>';
+      $output .= '<dd>' . t('It is an initiative for knowing the people behind a
+                           website, Is a TXT file that contains information
+                           about the different people who have contributed to
+                           building the website.') . '</dd>';
+      $output .= '<dt>' . t('Who should I mention?') . '</dt>';
+      $output .= '<dd>' . t('Whoever you want to, provided they wish you to do
+                           so. You can mention the developer, the designer,
+                           the copywriter, the webmaster, the SEO, SEM or
+                           SMO... As you can see, the number of people who may
+                           take part of the creation of a site can be big, so
+                           the list is almost endless.') . '</dd>';
+      $output .= '<dt>' . t('Internet is for humans...') . '</dt>';
+      $output .= '<dd>' . t('We are always saying that, but the only file we
+                           generate is one full of additional information for
+                           the searchbots: robots.txt. Then why not doing one
+                           for ourselves?') . '</dd>';
+      $output .= '</dl>';
+      return $output;
+  }
+}
+
 /**
  * Implements hook_permission().
  */
