+ 1
Why is there a / in the end of every command script? Ex. <p> Hello there! </p>
8 Answers
+ 3
the /element is used to close the opening of any tag.e.g <HTML> open tag, </HTML> closed tag.
+ 1
It is for the browser to recognize the end of a property i.e., your tag
+ 1
Some tags work even without the close tag. The browser can recognize the end of a property. Ex. <html> does not need a close tag
0
its like begin and end. This is the begin<p>, this is the end </p>. Every begin has an end ;). It is life's rule :)
0
/ is used to end any tag in html..if you do not close the ending tag then it is the worst approach.if you don't use / then one tag will continue and whatever you write will reside in that tag
0
that is really
f
0
basically der r 2 types of tags as u know
1) paired tags.....head,b,u,i, etc.....
2) unpaired tags.....Br,hr,.....etc
0
it shows the ending of the paragraph when it comes to </p>.