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, ∼2679🔥, 0💬
Popular Posts:
How to Instantiate Chaincode on BYFN Channel? You can follow this tutorial to Instantiate Chaincode ...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
What is Azure API Management Publisher Dashboard? Azure API Management Publisher Dashboard is an Azu...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...
Where to find tutorials on JSON (JavaScript Object Notation) text string format? I want to know how ...