html ascii code "not well formed" error
I'm working on a webpage in spanish an english, so I have to use special characters like á, é, etc.
For this i took this info of codes: http://www.ascii.cl/htmlcodes.htm
and I wrote a:
<h3>Energía;</h3>
but on the error console it says this: not well-formed I had it with no ; but then I put it, but the error is still there, any ideas?
Thanks开发者_运维百科!
You need to flip the semicolon and the "a":
<h3>Energía</h3>
精彩评论