diff --git a/humanstxt.module b/humanstxt.module
index a563d72..112b940 100644
--- a/humanstxt.module
+++ b/humanstxt.module
@@ -5,6 +5,60 @@
  * 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="http://humanstxt.org/"
+                          target="_blank">Humans.txt</a>. You can see an
+                          example of the humans.txt file
+                          <a href="http://humanstxt.org/humans.txt" target="_blank">
+                          here</a>') . '</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('Why should I?') . '</dt>';
+    $output .= '<dd>' . t('You don\'t have to if you don\'t want. The only aim
+                           of this initiative is to know who the authors of the
+                           sites we visit are.') . '</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('Meta Name or humans.txt?') . '</dt>';
+    $output .= '<dd>' . t('This is not a fight, you don\'t have to choose one
+                           or the other. Humans.txt is just a way to have more
+                           information about the authors of the site.') . '</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>';
+    $output .= '<h3>' . t('More Questions?') . '</h3>';
+    $output .= '<p>' . t('<a href="http://cambrico.net/contact" target="_blank">
+                          Get in touch with us</a> for customizations and
+                          consultancy.') . '</p>';
+    return $output;
+  }
+}
+
 /**
  * Implements hook_permission().
  */
