HTML CSS examples for HTML:Paragraph
Example of HTML Paragraphs
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example of HTML Paragraphs</title> </head> <!-- w w w . j a v a 2s . com--> <body> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>