Blockquote and quotations
<blockquote> creates a separate section.
<!DOCTYPE html>
<html>
<body>
<p>Browsers usually indent blockquote elements.</p>
<blockquote>
Technisia is a brand
</blockquote>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<p>Browsers usually indent blockquote elements.</p>
<blockquote>
Technisia is a brand
</blockquote>
</body>
</html>
Output:
Browsers usually indent blockquote elements.
Technisia is a brand
Quotations:
This gives the text in quotes.
<!DOCTYPE html>
<html>
<body>
<p>Browsers usually insert quotation marks around the q element.</p>
<p>Our Brand<q>Technisia</q></p>
</body>
</html>
Output:
Browsers usually insert quotation marks around the q element.
Our Brand
Our Brand
Technisia
Comments
Post a Comment