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, 4751👍, 0💬
Popular Posts:
How To Display a Past Time in Days, Hours and Minutes? - MySQL FAQs - Managing Tables and Running Qu...
Can a variable be both const and volatile? Yes. The const modifier means that this code cannot chang...
How can I execute a PHP script using command line? Just run the PHP CLI (Command Line Interface) pro...
Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a chang...
How To Use an Array as a Queue? - PHP Script Tips - PHP Built-in Functions for Arrays A queue is a s...