You can use them with elm/html.
module Main exposing (main)
import Browser
import Html exposing (..)
import Html.ResetCss
main : Program Never Model Msg
main =
Browser.sandbox
{ init = init
, update = update
, view = view
}
...
view : Model -> Html Msg
view model =
div []
[ Html.ResetCss.sanitize
, header [] [ text "My site." ]
, main_ []
[ article []
[ h1 [] [ text "Title" ]
, text "My contents."
]
]
, footer [] [ text "©2021 y047aka" ]
]
ericMeyer : Html msg
html5Doctor : Html msg
normalize : Html msg
sanitize : Html msg
ress : Html msg
destyle : Html msg
theNewCssReset : Html msg
erc_HardReset : Html msg
erc_Normalize : Html msg