Tools, FAQ, Tutorials:
Closing XHTML 'br' Tags
What Is wrong with my <br> Tags?
✍: FYIcenter.com
If you are used HTML syntax, you may write your <br> tags
as in the paragraph below:
<p> I love the way you look at me,<br> Your eyes so bright and blue.<br> I love the way you kiss me,<br> Your lips so soft and smooth.<br> </p>
But that paragraph will be invalid as XHTML documents, because all 4 <br> are not closed. You should change it to:
<p> I love the way you look at me,<br/> Your eyes so bright and blue.<br/> I love the way you kiss me,<br/> Your lips so soft and smooth.<br/> </p>
2024-03-23, ∼2811🔥, 0💬
Popular Posts:
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
dev.FYIcenter.com is a Website for software developer looking for software development technologies,...
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example ...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...