HTML CSS examples for HTML:Line Break
Example of Inserting Line Breaks in HTML
<!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>