answersLogoWhite

0

< br > and < p > are both very different in HTML Coding. < br > stands for "Line Break". If you were to insert that in your HTML, it would be like typing the Enter or Return key on your keyboard. This comes in handy a lot, and the avid web designer should use it frequently. < p > on the other hand, stands for "Paragraph." It is used to organize your HTML, so that it will be easy to edit it later on. Typing < p > says that you are starting a new paragraph, and typing < /p > says that you are ending one. Hope this helps!
-jjshammas P.S. Just so you know, take out the spaces in the HTML Codes listed above.

User Avatar

Wiki User

16y ago

Still curious? Ask our experts.

Chat with our AI personalities

RossRoss
Every question is just a happy little opportunity.
Chat with Ross
JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
ReneRene
Change my mind. I dare you.
Chat with Rene

Add your answer:

Earn +20 pts
Q: What is the difference between br and p in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Basic Math

What is the difference between enable and unable?

One has an 'E' and one has a 'U'... simple ;P


What is the difference between a root and a factor?

x=5 based on the information above... the factor is: (x-5) and the root is: 5 :P XD LOL DX :) :( ;) ;( :o


The sum or difference of p and q is the coefficient of the in the trinomial?

X-term


The sum or difference of p and q is the of the x-term in the trinomial?

coefficient


What is the first step to use in detecting data type mismatch errors?

Better if you use javascript or another scripting language to analyse what is sent to the server in the first place. Most of the browsers support javascript.Suppose there is an input type of text of the simple html formName:Age : // The button below makes sure that client side validation is done otherwise it doesn't send data to servers // Here the "return checkData()" forces the client-side validation to occur before sending it to serverfunction checkData(){var char = /^[a-zA-Z]+$/;var num= /^[0-9]+$/;var name = document.getElementById("name");var age = document.getElementById("age");if(name.value==""name.value.match(num)){alert("Namespace cannot contain numericals!!");return false;}else if(age.value==""age.value.match(char)){alert("Age cannot be empty or contain characters!!");return false;}else{form1.form.submit();return true;}}// The neat little code tells if javascript is enabled/disabled in browserYour browser doesn't support javascriptMost of things would be easy this way but alas things aren't so easy. You also need to validate data on the server side using echo statements & control loops before finally posting data in mysql table