From ab99e188fcf92864eb86ce9e0b8058a9d0da3518 Mon Sep 17 00:00:00 2001 From: Jason Deppen Date: Tue, 23 Feb 2016 11:46:13 -0500 Subject: [PATCH] Fix typo. Add filenames above code. --- lessons/05-active-links.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lessons/05-active-links.md b/lessons/05-active-links.md index 731c8346..f72e3579 100644 --- a/lessons/05-active-links.md +++ b/lessons/05-active-links.md @@ -14,7 +14,7 @@ Let's see how it looks with inline styles, add `activeStyle` to your
  • Repos
  • ``` -How as you navigate, the active link is red. +Now as you navigate, the active link is red. ## Active Class Name @@ -30,12 +30,14 @@ points if you can add a `link` tag from memory. Double extra points if you can leave the attributes unquoted, against your better judgement. ```html + ``` And the css file: ```css +/* index.css */ .active { color: green; }