How do I use span around text in Elm?

Rok*_*kit 0 html markup elm

How can I write the following markup in Elm?

<p>Here is <span class="red">some text.</span></p>
Run Code Online (Sandbox Code Playgroud)

Sim*_*n H 6

The exact answer seems to be a bit of both of the first two answers

someText : Html Msg
someText =
    p []
        [ text "Here is "
        , span [ class "red" ] [ text "some text." ]
        ]
Run Code Online (Sandbox Code Playgroud)