diff --git a/core/modules/help/help.admin.inc b/core/modules/help/help.admin.inc
index b37819b..38968bf 100644
--- a/core/modules/help/help.admin.inc
+++ b/core/modules/help/help.admin.inc
@@ -15,7 +15,7 @@
 function help_main() {
   // Add CSS
   drupal_add_css(drupal_get_path('module', 'help') . '/help.css');
-  $output = '<h2>' . t('Help topics') . '</h2><p>' . t('Help is available on the following items:') . '</p>' . help_links_as_list();
+  $output = '<h2>' . t('Help topics') . '</h2>' . help_links_as_list();
   return $output;
 }
 
diff --git a/core/modules/help/help.module b/core/modules/help/help.module
index 773a52d..3e4c594 100644
--- a/core/modules/help/help.module
+++ b/core/modules/help/help.module
@@ -38,7 +38,7 @@ function help_menu() {
 function help_help($path, $arg) {
   switch ($path) {
     case 'admin/help':
-      $output = '<p>' . t('Follow these steps to set up and start using your website:') . '</p>';
+      $output = '<h2>' . t('Getting started') . '</h2>';
       $output .= '<ol>';
       $output .= '<li>' . t('<strong>Configure your website</strong> Once logged in, visit the <a href="@admin">administration section</a>, where you can <a href="@config">customize and configure</a> all aspects of your website.', array('@admin' => url('admin'), '@config' => url('admin/config'))) . '</li>';
       $output .= '<li>' . t('<strong>Enable additional functionality</strong> Next, visit the <a href="@modules">module list</a> and enable features which suit your specific needs. You can find additional modules in the <a href="@download_modules">Drupal modules download section</a>.', array('@modules' => url('admin/modules'), '@download_modules' => 'http://drupal.org/project/modules')) . '</li>';
diff --git a/core/modules/help/help.test b/core/modules/help/help.test
index a37afb2..36bf5a8 100644
--- a/core/modules/help/help.test
+++ b/core/modules/help/help.test
@@ -58,7 +58,7 @@ class HelpTestCase extends DrupalWebTestCase {
     $this->assertRaw(t('For more information, refer to the specific topics listed in the next section or to the <a href="@drupal">online Drupal handbooks</a>.', array('@drupal' => 'http://drupal.org/handbooks')), 'Help intro text correctly appears.');
 
     // Verify that help topics text appears.
-    $this->assertRaw('<h2>' . t('Help topics') . '</h2><p>' . t('Help is available on the following items:') . '</p>', t('Help topics text correctly appears.'));
+    $this->assertRaw('<h2>' . t('Help topics') . '</h2>', t('Help topics text correctly appears.'));
 
     // Make sure links are properly added for modules implementing hook_help().
     foreach ($this->modules as $module => $name) {
