Line Break Tag
Whenever you use the
element, anything following it starts from the next line. This tag is an example of an empty element, where you do not need opening and closing tags, as there is nothing to go in between them. The
tag has a space between the characters br and the forward slash. If you omit this space, older browsers will have trouble rendering the line break, while if you miss the forward slash character and just use
it is not valid in XHTML.
element, anything following it starts from the next line. This tag is an example of an empty element, where you do not need opening and closing tags, as there is nothing to go in between them. The
tag has a space between the characters br and the forward slash. If you omit this space, older browsers will have trouble rendering the line break, while if you miss the forward slash character and just use
it is not valid in XHTML.
<!DOCTYPE html>
<html>
<head>
<title>paragraph tag</title>
</head>
<body>
<p>this is first <br>para of text</p>
<p>this is second para </p>
<p>this is <br>third para</p>
</body>
</html>
______________
No comments:
Post a Comment
Please do not enter any Link in the comment box.