+ 10
What is yhe use blockquote tag
blockquote
2 odpowiedzi
+ 1
Simple answer, without adding any CSS it adds a bit of padding to make it like a quote
This might give you a visual example added some css etc.
http://html5doctor.com/blockquote-q-cite/
+ 1
This tag will make the text appear different from the other texts as the text between <blockquote> tag will be displayed at some space from the previous text as well as from the left margin of the webpage.
Example:
<p>This is a normal text.Lets see an example. <blockquote>This text is quoted. </blockquote>Hope u got it. All the best...!!!</p>
Output :
This is a normal text.Lets see an example.
This text is quoted.
Hope u got it. All the best...!!!