Two class attributes are created instead of just one with their values combined. ```haskell > renderHtml $ div ! (class_ "hi" <> class_ "there") $ "innerhtml" ``` ```html <div class="hi" class="there">innerhtml</div> ```