Example of Inserting Line Breaks in HTML - HTML CSS HTML

HTML CSS examples for HTML:Line Break

Description

Example of Inserting Line Breaks in HTML

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Example of Inserting Line Breaks in HTML</title> 
 </head> <!--from   w  w  w. j av a2s  .c  om-->
 <body> 
  <p>This is a paragraph <br> with line break. This is a test.</p> 
  <p>This is a test. This is a test. This is <br>another paragraph <br> with line breaks.</p>   
 </body>
</html>

Related Tutorials