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中文網(wǎng)原創(chuàng)幽默段子系列課程,以惡搞,段子為主題風(fēng)格的php視頻教程!輕松的教學(xué)風(fēng)格,簡短的教學(xué)模式,讓同學(xué)們在不知不覺中,學(xué)會了HTML知識。 </blockquote> </body> </html>
Run instance ?
Click the "Run instance" button to view the online instance