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 P Elements
What Is Wrong with My P Elements? - XHTML 1.0 Tutorials - Body Tag and Block Level Tags
✍: FYIcenter.com
If you are having trouble with your p elements, it could be caused by one of the following common mistakes:
<!-- Missing closing tags --> <body> <p>I love the way you look at me. <p>I love the way you kiss me. </body> <!-- "blockquote" is not allowed in a p element --> <body> <p><blockquote> "You don't love a woman because she is beautiful, but she is beautiful because you love her." </blockquote></p> </body> <!-- "form" is not allowed in a p element --> <body> <p><form action=""> Take in this survey to win $10,000.00! </form></p> </body>
2007-05-12, 4782👍, 0💬
Popular Posts:
What are the different storage classes in C? C has three types of storage: automatic, static and all...
How To Run "mysql" Commands from a Batch File? - MySQL FAQs - Command-Line End User Interface mysql ...
What Is Paint Shop Pro? - PSP Tutorials - Fading Images to Background Colors with PSP Paint Shop Pro...
How To Write a Query with a Right Outer Join? - Oracle DBA FAQ - Understanding SQL SELECT Query Stat...
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the ...