HTML Quotes

HTML quotes are used to put a short quotation on your website.

HTML q tag is used to put small quotation.

See this example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML Quotes Tag</title>
</head>
<body>
	<p>Steve Jobs said : <q>Sometimes life hits you in the head with a brick. Don't lose faith.</q></p>    
 </body>
</html>

HTML blockquote tag

HTML blockquote tag is used to define a large quoted section. If you've a large quotation then put the entire text within <blockquote>....</blockquote> tag.

See this example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML blockquote Tag</title>
</head>
<body>
    <p>Read this story.</p>
	<blockquote>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</blockquote>    
 </body>
</html>