Example of HTML quotations - HTML CSS HTML

HTML CSS examples for HTML:Text Format

Description

Example of HTML quotations

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML quotations</title> 
 </head> <!-- w w  w.  ja va  2  s  .c  om-->
 <body> 
  <blockquote> 
   <p>This is an example of a long quotation.</p> 
  </blockquote> 
  <p>This is an example of <q>short inline</q> quotation.</p>   
 </body>
</html>

Related Tutorials