How To Make a Quatations In HTML

admin_img Posted By Bajarangi soft , Posted On 29-09-2020

The HTML 'blockquote' element defines a section that is quoted from another source,'q' tag defines a short quotati,the 'abbr' tag defines an abbreviation or an acronym, like "HTML",'address' tag defines the contact information for the author/owner of a document or an article,'cite'tag defines the title of a creative work,'bdo' tag is used to override the current text direction,

Quotations in  Html

1.Create a Quotation Elements In HTML

<!DOCTYPE html>
<html>
<body>

<p style="color: blue;font-size:20px;"><b>Bajarangi Soft</b></p>
<p style="color: red;font-size:20px;"><q>Bajarangi Soft</q></p>
<p style="color: pink;font-size:20px;">This is<abbr title="bajarangi soft" > BAJARANGI </abbr>SOFT</p>
<p style="color: lawngreen;font-size:20px;">Bajarangi soft</p>
<blockquote cite="bajarangi soft" style="color:lawngreen;font-size:20px;">this institute provoides a training on web designing like html,css etc...</blockquote><p style="color: blue;font-size:40px;"></p>

<p  style="color:darkgreen;font-size:20px;">Bajarangi soft Address</p>
<address style="color:darkgreen">
    written by Sirisha.<br>
    visit us at:<br>
    Example.com.<br>
</address>

<p  style="color:#c76b19;font-size:20px;" >The HTML cite element defines the title of a work.</p>
<img src="my_pic.jpg" width="200" height="250" alt="The Scream">
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p>

<bdo dir="rtl">This line will be written from right to left</bdo>


</body>
</html>

Related Post