0
what does trailing solidus not allowed mean in html
Hello everyone, Im facing a strange sort of problem : in the code down bellow next to the <p> in a different terminal Im warned that " trailing soldus not allowed". The code still works but I would like to know what does this mean if sometime in the future I find this warning again. Thank you all in advance. https://code.sololearn.com/Wfa7QKWmfvbo/?ref=app
5 odpowiedzi
+ 1
You have a typo here:
<p> Za koga je ovaj raspored<p/>
The paragraph closing tag slash should be before the 'p'
+ 1
This is strange too:
<h1 align="center" RASPORED CASOVA III3 > </h1>
The text should be between opening and closing tags, not inside opening tag.
0
Thanks a lot, didn't even notice the stupid mistakes I made
0
Get used to validators and linting. I like this web validator a lot:
https://validator.w3.org/
0
Thanks I sure will use it in the future