Line Break Tag on HTML

Line Break Tag :

Whenever you use the <br /> 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 <br /> 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 <br> it is not valid in
 XHTML.

Example :

<!DOCTYPE html>
<html>
<head>
<title>Line Break Example</title>
</head>
<body>
<p>Hello<br />
You delivered your assignment on time.<br />
Thanks
</p>
</body>
 </html>

OUTPUT:

Hello
You delivered your assignment on time.
Thanks

Comments

Popular posts from this blog

Set Font Colour

HTML FONTS

HTML Table Heading