HTML <blockquote> tag
HTML <blockquote> tag : Definition
• The HTML <blockquote> tag specifies a section that is quoted from another source.
• The Browser usually displays the content within <blockquote> tag as indented text.
<blockquote> tag example :
<!DOCTYPE html>
<html>
<head>
<title>HTML <blockquote> tag example</title>
</head>
<body>
HTML stands for Hyper Text Markup Language. It allows us to organize text, graphics,
audio and video on a web page.
written by AimToCode<blockquote cite="https://aimtocode.com/html-tutorial.php">
HTML Introduction</blockquote>
</body>
</html>
OUTPUT :
HTML stands for Hyper Text Markup Language. It allows us to organize text, graphics, audio and video on a web page. written by AimToCodeHTML Introduction