diff --git a/aio/content/tutorial/index.md b/aio/content/tutorial/index.md
index 057327d4b3..b87f382214 100644
--- a/aio/content/tutorial/index.md
+++ b/aio/content/tutorial/index.md
@@ -101,3 +101,5 @@ Each step is motivated with a requirement that you've likely
met in many applications. Everything has a reason.
Along the way, you'll become familiar with many of the core fundamentals of Angular.
+
+Start now by building a simple [hero editor](tutorial/toh-pt1 "The Hero Editor").
diff --git a/aio/content/tutorial/toh-pt1.md b/aio/content/tutorial/toh-pt1.md
index f13f0d5bf7..a43323c0e8 100644
--- a/aio/content/tutorial/toh-pt1.md
+++ b/aio/content/tutorial/toh-pt1.md
@@ -287,6 +287,6 @@ Here's the complete `app.component.ts` as it stands now:
## The road ahead
-In the [next tutorial page](tutorial/toh-pt2), you'll build on the Tour of Heroes app to display a list of heroes.
+In the [next tutorial page](tutorial/toh-pt2 "Master/Detail"), you'll build on the Tour of Heroes app to display a list of heroes.
You'll also allow the user to select heroes and display their details.
You'll learn more about how to retrieve lists and bind them to the template.
diff --git a/aio/content/tutorial/toh-pt2.md b/aio/content/tutorial/toh-pt2.md
index a571ca26e3..b346127409 100644
--- a/aio/content/tutorial/toh-pt2.md
+++ b/aio/content/tutorial/toh-pt2.md
@@ -463,4 +463,4 @@ Your app should look like this .
## The road ahead
You've expanded the Tour of Heroes app, but it's far from complete.
An app shouldn't be one monolithic component.
-In the [next page](tutorial/toh-pt3), you'll split the app into subcomponents and make them work together.
+In the [next page](tutorial/toh-pt3 "Multiple Components"), you'll split the app into subcomponents and make them work together.
diff --git a/aio/content/tutorial/toh-pt3.md b/aio/content/tutorial/toh-pt3.md
index 2a33610cee..24d3b3cb44 100644
--- a/aio/content/tutorial/toh-pt3.md
+++ b/aio/content/tutorial/toh-pt3.md
@@ -464,4 +464,4 @@ That's not sustainable.
Data access should be refactored to a separate service
and shared among the components that need data.
-You’ll learn to create services in the [next tutorial](tutorial/toh-pt4) page.
+You’ll learn to create services in the [next tutorial](tutorial/toh-pt4 "Services") page.
diff --git a/aio/content/tutorial/toh-pt4.md b/aio/content/tutorial/toh-pt4.md
index 46f3bdfa5a..4bd2b44a01 100644
--- a/aio/content/tutorial/toh-pt4.md
+++ b/aio/content/tutorial/toh-pt4.md
@@ -609,7 +609,7 @@ The Tour of Heroes has become more reusable using shared components and services
The next goal is to create a dashboard, add menu links that route between the views, and format data in a template.
As the app evolves, you'll discover how to design it to make it easier to grow and maintain.
-Read about the Angular component router and navigation among the views in the [next tutorial](tutorial/toh-pt5) page.
+Read about the Angular component router and navigation among the views in the [next tutorial](tutorial/toh-pt5 "Routing and Navigation") page.
{@a slow}
diff --git a/aio/content/tutorial/toh-pt5.md b/aio/content/tutorial/toh-pt5.md
index 18f39aacc8..b79fe3a68f 100644
--- a/aio/content/tutorial/toh-pt5.md
+++ b/aio/content/tutorial/toh-pt5.md
@@ -1373,5 +1373,5 @@ Your app should look like this .
You have much of the foundation you need to build an app.
You're still missing a key piece: remote data access.
-In the next page,
+In the [next tutorial page](tutorial/toh-pt6 "Http")
you’ll replace the mock data with data retrieved from a server using http.