From 73aa1ed97590a65aa196771e7ed6440d778af299 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Tue, 14 Aug 2018 01:42:20 -0400 Subject: [PATCH] Revise intro/part1 --- intro/part1/Main.elm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/intro/part1/Main.elm b/intro/part1/Main.elm index fff019f..4ea0e6d 100644 --- a/intro/part1/Main.elm +++ b/intro/part1/Main.elm @@ -5,22 +5,25 @@ import Html.Attributes exposing (..) banner = - {- TODO Add a logo and tagline to this banner, so its structure becomes: + {- 👉 TODO: Add a logo and tagline to this banner, so its structure becomes: - HINT 1: the
above is an element with 2 child nodes. + 💡 HINT 1: the
above is an element with 2 child nodes. - HINT 2: the
below is an element with text. + 💡 HINT 2: the
below is an element with text. -} div [ class "banner" ] [ div [ class "container" ] - [ text "TODO: Put a

here instead of this text, then add a

right after the

" ] + [ text "👉 TODO: Put the

here instead of this text, then add the

right after the

" ] ] @@ -30,7 +33,7 @@ feed = main = div [ class "home-page" ] - [ p [] [ text "TODO: Replace this

with the banner" ] + [ div [] [ text "👉 TODO: Replace this

with the banner" ] , div [ class "container page" ] [ div [ class "row" ] [ div [ class "col-md-9" ] [ feed ]