Do you mean like that:
import Html (a, text)
import Html.Attributes (href, target)
link = a [href "http://elm-lang.org/", target "_blank"] [text "Elm"]
If you ask about a
solution with Graphics.Element,
I don’t think there is one without modifying the library.