Example of HTML hr tag - HTML CSS HTML

HTML CSS examples for HTML:Line Break

Description

Example of HTML hr tag

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML hr tag</title> 
 </head> <!--   w ww. ja v  a2  s  .  co  m-->
 <body> 
  <p>This is the first paragraph of text.</p> 
  <hr> 
  <p>This is second paragraph of text.</p>   
 </body>
</html>

Related Tutorials