Markup

Markup – Whitespace, Break, Horizontal rule 

It is useful for making a web page content as well html code readable. There are different tags practices and techniques for making the content of the web page readable like writing each line of the html code using a tag <p></p>. or using a break tag <br>. Beside that content of the html code has to be readable, in doing that single/double space or tab key will be used for indenting line of code. 

Breaking and Horizontal Line Break

It is a tag used to make a line break or start in a new line or line feed. Therefore setting new line inside of the paragraph will be possible using a tag <br> wherever we want to have it. 

Syntax : - 
<p> text to be in paragraph <br>
Another text to be inside of the paragraph<br>
Again another text<br> to be inside of the paragraph</p> 

Example : - 
<p>Science and technology is one of the most important thing to make living more easier.<br>There are a lot of researches taken place in a different field to achieve better result.</p> 

Horizontal Rule

It is a tag which creates a horizontal rule/line to between two different theme or paragraph. The rule is assigned just to show that there is not any correlation between the two paragraphs. The application of this rule is made using a tag <hr/>. 

Syntax : - 
      <p> text to be inside of the paragraph<br>
            another text to be in a paragraph<br>
            still another text to be inside of the paragraph</p>
      <hr/>
      <p> text to be inside of the paragraph<br>
            another text to be in a paragraph<br>
            still another text to be inside of the paragraph</p>
Example : - 
<p>Science and technology is one of the most important thing to make living more easier.<br>There are a lot of researches taken place in a different field to achieve better result.</p> 
<hr/> 
<p> The world is now full of people who are making things more modern and advance. Hopefully the future life would be better and simple than now.</p> 

Please do not forget to subscribe the YouTube channel to support the channel and get a quick notice. Also visit the facebook page for further notice ,resources and comment. 

Youtube channel : – ecitizen
Facebook page :- www.facebook.come/ecitizenethio 

Scroll to Top