+ 1
Isn't a lot to this code outdated.
like the <b> tag should it not be <strong>. also the <br /> is that not a self closing tag and be done like <br> ?
3 Respostas
+ 3
Hello, Paul Farrell !
Please write in more detail, and then people will be able to answer your question, and solve it!
+ 3
<br /> or <br/> (and all tags of this sort) are used for xhtml/xml compatibility which is useful for parsing, because you can just use an xml parser for html parsing this way: see this answer https://stackoverflow.com/questions/1946426/html-5-is-it-br-br-or-br
<b> can be used as last resort if no other tag is appropriate, but <strong> should be used for important content
0
thanks Max that helped.