HTML Paragraphs [] The use of line breaks
The use of line breaks
<!DOCTYPE html> <html> <body> <p>This is<br>a para<br>graph with line breaks</p> </body> </html>
Output
This is
a para
graph with line breaks
The use of line breaks
<!DOCTYPE html> <html> <body> <p>This is<br>a para<br>graph with line breaks</p> </body> </html>
Output
This is
a para
graph with line breaks