MyTetra Share
Делитесь знаниями!

- Line Break Tag
Время создания: 01.10.2017 10:50
Раздел: HTML
Запись: xintrea/mytetra_db_mcold/master/base/150684425136e609vp7h/text.html на raw.githubusercontent.com

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 ontime.<br />
         Thanks<br />
         Mahnaz</p>
   </body>
	
</html>

This will produce the following result −


Hello

You delivered your assignment on time.

Thanks

Mahnaz

Так же в этом разделе: