Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4704👍, 0💬
Popular Posts:
Do events have return type ? No, events do not have return type.
.NET INTERVIEW QUESTIONS - What is COM ? Microsoft’s COM is a technology for component software deve...
Can you write a program to interchange 2 variables without using the third one? a = 7; b = 2; a = a ...
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...
How To Create Nested Tables? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells You can cr...