Index: src/wp-admin/network/site-info.php
===================================================================
--- src/wp-admin/network/site-info.php	(revision 33116)
+++ src/wp-admin/network/site-info.php	(working copy)
@@ -129,6 +129,8 @@
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a class="add-new-h2" href="' . get_admin_url( $id ) . '">' . __( 'Dashboard' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
@@ -138,7 +140,7 @@
 
 <div class="wrap">
 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
-<h3 class="nav-tab-wrapper">
+<h2 class="nav-tab-wrapper">
 <?php
 $tabs = array(
 	'site-info'     => array( 'label' => __( 'Info' ),     'url' => 'site-info.php'     ),
@@ -150,8 +152,10 @@
 	$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
 	echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
 }
+// link to the site dashboard is displayed after the tabs
+echo $dashboard;
 ?>
-</h3>
+</h2>
 <?php
 if ( ! empty( $messages ) ) {
 	foreach ( $messages as $msg ) {
Index: src/wp-admin/network/site-settings.php
===================================================================
--- src/wp-admin/network/site-settings.php	(revision 33116)
+++ src/wp-admin/network/site-settings.php	(working copy)
@@ -79,6 +79,8 @@
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a class="add-new-h2" href="' . get_admin_url( $id ) . '">' . __( 'Dashboard' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
@@ -88,7 +90,7 @@
 
 <div class="wrap">
 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
-<h3 class="nav-tab-wrapper">
+<h2 class="nav-tab-wrapper">
 <?php
 $tabs = array(
 	'site-info'     => array( 'label' => __( 'Info' ),     'url' => 'site-info.php'     ),
@@ -100,8 +102,10 @@
 	$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
 	echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
 }
+// link to the site dashboard is displayed after the tabs
+echo $dashboard;
 ?>
-</h3>
+</h2>
 <?php
 if ( ! empty( $messages ) ) {
 	foreach ( $messages as $msg )
Index: src/wp-admin/network/site-themes.php
===================================================================
--- src/wp-admin/network/site-themes.php	(revision 33116)
+++ src/wp-admin/network/site-themes.php	(working copy)
@@ -133,6 +133,8 @@
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a class="add-new-h2" href="' . get_admin_url( $id ) . '">' . __( 'Dashboard' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
@@ -140,7 +142,7 @@
 
 <div class="wrap">
 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
-<h3 class="nav-tab-wrapper">
+<h2 class="nav-tab-wrapper">
 <?php
 $tabs = array(
 	'site-info'     => array( 'label' => __( 'Info' ),     'url' => 'site-info.php'     ),
@@ -152,8 +154,10 @@
 	$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
 	echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
 }
+// link to the site dashboard is displayed after the tabs
+echo $dashboard;
 ?>
-</h3><?php
+</h2><?php
 
 if ( isset( $_GET['enabled'] ) ) {
 	$enabled = absint( $_GET['enabled'] );
Index: src/wp-admin/network/site-users.php
===================================================================
--- src/wp-admin/network/site-users.php	(revision 33116)
+++ src/wp-admin/network/site-users.php	(working copy)
@@ -161,6 +161,8 @@
 $title_site_url_linked = sprintf( __( 'Edit Site: %s' ), '<a href="' . get_blogaddress_by_id( $id ) . '">' . $site_url_no_http . '</a>' );
 $title = sprintf( __( 'Edit Site: %s' ), $site_url_no_http );
 
+$dashboard = '<a class="add-new-h2" href="' . get_admin_url( $id ) . '">' . __( 'Dashboard' ) . '</a>';
+
 $parent_file = 'sites.php';
 $submenu_file = 'sites.php';
 
@@ -183,7 +185,7 @@
 
 <div class="wrap">
 <h1 id="edit-site"><?php echo $title_site_url_linked; ?></h1>
-<h3 class="nav-tab-wrapper">
+<h2 class="nav-tab-wrapper">
 <?php
 $tabs = array(
 	'site-info'     => array( 'label' => __( 'Info' ),     'url' => 'site-info.php'     ),
@@ -195,8 +197,10 @@
 	$class = ( $tab['url'] == $pagenow ) ? ' nav-tab-active' : '';
 	echo '<a href="' . $tab['url'] . '?id=' . $id .'" class="nav-tab' . $class . '">' . esc_html( $tab['label'] ) . '</a>';
 }
+// link to the site dashboard is displayed after the tabs
+echo $dashboard;
 ?>
-</h3><?php
+</h2><?php
 
 if ( isset($_GET['update']) ) :
 	switch($_GET['update']) {
