If you input: ```html <div style="background-image: url("avatar.jpg");"></div> ``` The result is: ```elm div [ attribute "style" "background-image: url("avatar.jpg");" ] [] ``` Which is not valid **elm** code. It should escape the double quotes: ```elm div [ attribute "style" "background-image: url(\"avatar.jpg\");" ] [] ```