HTML CSS examples for HTML:Line Break
Example of HTML hr tag
<!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>