Header Ads Widget

Responsive Advertisement

Horizontal Lines

Horizontal lines are used to visually break-up sections of a document. The

tag creates a line from the current position in the document to the right margin and breaks the line accordingly.For example,you may want to give a line between two paragraphs as in the given example below: 

 Example

This will produce the following result:This is paragraph one and should be on topThis is paragraph two and should be at bottomAgain
tag is an example of theemptyelement, where you do not need opening and closing tags, as there is nothing to go in between them.The
element has a space between the charactershrand the forward slash. If you omit this space, older browsers will have trouble rendering the horizontalline, while if you miss the forward slash character and just use
it is not valid in XHTML

Centering Conten

 You can use<center>tag to put any content in the center of the page or any table cell.

Example



 

This will produce the following result. This text is not in the center. This text is in the center.

Line Break Tag

 Whenever you use the<br />element, anything following it starts from the next line. This tag is an example of anemptyelement, 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 charactersbrand 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


 

Paragraph Tag

 The<p>tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening <p> and a closing </p> tag as shown below in the example:

 Example