0% found this document useful (0 votes)
77 views

Block Quote HTML

The document discusses the HTML <blockquote> tag which is used to define quoted text. It demonstrates using the <blockquote> tag in code and lists the supported attributes of the <blockquote> tag.

Uploaded by

Sourabh Bhandari
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
77 views

Block Quote HTML

The document discusses the HTML <blockquote> tag which is used to define quoted text. It demonstrates using the <blockquote> tag in code and lists the supported attributes of the <blockquote> tag.

Uploaded by

Sourabh Bhandari
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

BLOCKQUOTES

The blockquote tag designates the quotes text. There are two special tags for marking
quoted text. It defines the block quotation. Let us demonstrate the <blockquote> tag with
code below :

<html>
<head>
<title>blockquote tag</title>
</head>
<body>
<blockquote>Hello</blockquote> there !...<br />
<q>Hello</q> there !...<br />
</body>
</html>

The following table describes the attributes that is supported by blockquote tag :

Attribute cite, class, dir, id, lang, onClick,


onDblClick, onKeyDown, onKeyPress, onKeyUp,
onMouseDown, onMouseMove, onMouseOut,
onMouseOver, onMouseUp, style, title.

© Copyright Sourabh Bhandari http://sourabhandari.in

You might also like