n.Block quote
html blockquote tag syntax
What does blockquote mean?
Function: The tag defines a block quote taken from another source.
Note: All text between<blockquote> and </blockquote> will be separated from the regular text, and will often be indented on the left and right sides (adding outer spacing), and italics are sometimes used. That is, block references have their own space.
Note: All major browsers support the <blockquote> tag.
html blockquote tag example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> php.cn独孤九贱: <blockquote> php中文网原创幽默段子系列课程,以恶搞,段子为主题风格的php视频教程!轻松的教学风格,简短的教学模式,让同学们在不知不觉中,学会了HTML知识。 </blockquote> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance