+ 5
Just finished the basic HTML blog project, getting a "named entity expected. Got none" error.
I'm not sure if linking the project url will work, but in case that is enough: https://code.sololearn.com/WOGx55Z3fp36/#html Also, I've made the project public through my profile. Anyway, I've customised the blog template when and where applicable, tried to add as much relevant stuff from the lessons, and everything seems to be running fine, apart from 1 single error, early on in the profile picture section. I've linked to a facebook picture, made sure that the alt section is filled in (not 100% on if that works but I figured it's something) and changed the & to & amp; but the error is still there. I've started the HTML course just yesterday and never programmed or coded before, so I'm a bit stuck now.
7 Antworten
+ 6
That's because there is an '&' symbol inside a link or src. HTML don't read entities like ampersand symbols. You should use %26 as an ampersand instead.
+ 2
I couldn't find any error. I think it's working fine.
+ 2
The Animator I salute to you buddy, 👨🎓
+ 2
That's because there is an '&' symbol inside a link or src. HTML don't read entities like ampersand symbols. You should use "&" as an ampersand instead.
+ 1
The Animator... Thanks a lot for that
0
congrats on finishing Rik van Straaten however the Q/A discussions is for questions regarding Coding to help you improve your code. by the way, I love it and keep up the great work but for now post your code to this thread
https://www.sololearn.com/discuss/452626/?ref=app
0
instead of "&" just add "amp;" and make it "&" especially on html5... each ampersand "&" on the link apply "&"