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, 4738👍, 0💬
Popular Posts:
What is the difference between include directive & jsp:include action? Difference between includ...
What are the high-level thread states? The high-level thread states are ready, running, waiting, and...
Can an anonymous class be declared as implementing an interface and extending a class? An anonymous ...
Example of using Regular Expressions for syntax checking in JavaScript ... var re = new RegExp("^(&a...
Regarding C Coding Given: Line in file Contents 30 int * someIDs, theFirst, *r; 110 someIDs =GetSome...