Files
elm-0.19-workshop/part1/Main.elm
2016-09-07 04:35:53 -05:00

23 lines
605 B
Elm

module Main exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
main =
div [ class "content" ]
[ header []
[ -- TODO wrap this text in an <h1>
text "ElmHub"
, span
[-- TODO give this span a class="tagline" attribute.
--
-- HINT: look at how our <div class="content"> does this above.
]
[{- TODO put some text in here that says:
"Like GitHub, but for Elm things."
-}
]
]
]