qutation and citation with example code

   qutation and citation with example code

 


 
<html>
<head>
    
    <title>HTML QUTATION and citation </title>

</head>

<body>
<h1>qutation and citation we can use all tag for mainly use for browser information</h1> 

<h1 style="background-color:green;">1.q Tag</h1>
 <p style= "color:red;">HTML Inline <q> Tag:  It is used to quote small 
 highlights text under quotation mark. It starts with opening and 
 ends with closing tags between quote in it, <q>small quote</q>.<p>

<h2 style="background-color:blue;">2. HTML Block-Level blockquote Tag:  <blockquote>It is used to quote large quotations</blockquote> by changing the alignment and display it as a Block element. 
It starts with opening and ends with closing 
tag between Blockquote in it, <blockquote>large quotations </blockquote>.</h2>

 
<h1 style="color:red;">3.abbrevetion Tag</h1>

<p>The <abbr title="Indian Space Research Organization"> ISRO </abbr> BEGAN IN 1962.</p>


<h2>4.address tag</h2>
<address>
write a your address details.browser configure as address.
John Doe
123 Main Street
Apt. 4B
New York, NY 10001
USA
</address>

<h1>The HTML cite tag defines the title of a creative work (e.g. a book, a poem, a song, a movie, a painting, a sculpture, etc.).</h1>
<p><cite>The Scream</cite> by Edvard Munch. Painted in 1893.</p>

<h2>5.bdo tag</h2>
<p>The HTML <bdo> tag is used to override the current text direction:</p>

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



 <h1>Media Elements in HTML</h1>

    <h2>Image Example</h2>

    <img src="D:\Photos\IMG_0331.jpeg" alt="An example image" width="500" height="300">

    <h2>Video Example</h2>
    <video width="600" controls>
        <source src="D:\Photos\VID-20230901-WA0015.mp4" type="video/mp4">
        Your browser does not support the video tag.
    </video>

    <h2>Audio Example</h2>
    <audio controls>
        <source src="example.mp3" type="audio/mp3">
        Your browser does not support the audio element.
    </audio>

    <h2>Embedded YouTube Video</h2>
    <iframe width="560" height="315" src="https://www.youtube.com/embed/example" 
            title="YouTube video player" frameborder="0" allowfullscreen>
    </iframe>



</body>
</html>




Example-






Post a Comment

0 Comments