Slide 3
Slide 3 text
div [ class "survey" ]
[ div [class "survey-section" ]
[ h2 [ class "section-title" ] [ text "Food" ]
, div [ class "question" ]
[ div [ class "question-text" ] [ text "Pineapple on Pizza?" ]
, div []
[ label [ for "pop-yes" ] [ text "Yes"]
, input
[ type_ "radio"
, id "pop-yes"
, name "pop"
, onCheck (always <| PoP True)
] []
, label [ for "pop-no" ] [ text "No"]
, input
[ type_ "radio"
, id "pop-no"
, name "pop"
, onCheck (always <| PoP False)
] []
]
]
]
-- repeat for anchovies
]