HTML CSS examples for HTML:Text Format
Example of HTML quotations
<!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>