Example of HTML Paragraphs - HTML CSS HTML

HTML CSS examples for HTML:Paragraph

Description

Example of HTML Paragraphs

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials