Code Editor Panel
Home
HTML Tutorial
Paragraph Code
Run
HTML
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p>A paragraph with lots of space, space igonored by paragraph element</p> <p>A paragraph with extra or new line, New line will be ignored and sentence will display in continue single line</p> <p>A paragraph to break line or use new line, <br> BR element used to break line or use new line <br> A paragraph to break line or use new line </p> </body> </html>
Output