开发者

html ascii code "not well formed" error

开发者 https://www.devze.com 2023-03-06 03:45 出处:网络
I\'m working on a webpage in spanish an english, so I have to use special characters like á, é, etc.

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&#237a;</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&#237;a</h3>
0

精彩评论

暂无评论...
验证码 换一张
取 消