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, ∼3220🔥, 0💬
Popular Posts:
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
How to create a navigation file like navigation.xhtml for an EPUB 3.0 book? At least one navigation ...
How to send an FTP request with the urllib.request.urlopen() function? If an FTP server supports ano...