Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is Wrong with My <br> Tags
What Is Wrong with My <br> Tags? - XHTML Tutorials - Introduction To Tag and Attribute Syntax
✍: FYIcenter.com
If you are used HTML syntax, you may write your <br> tags as in the paragram 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>
2007-05-12, 5271👍, 0💬
Popular Posts:
Rachel opened her math book and found that the sum of the facing pages was 245. What pages did she o...
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
What is CMM and different levels? explain? The Capability Maturity Model (CMM) is a process capabili...
Explain in detail the fundamental of connection pooling? When a connection is opened first time a co...
How do you target a specific frame from a hyperlink? Include the name of the frame in the target att...