Tuesday, January 9, 2024

audio tag in html


         html audio tag 


 1] Html <audio> tag used to define sound and music ,audio .

2]  audio tag  support file format  

            MP3

            WAV

            OGG

 3]  <audio> tag  contains one or more <source> tag .

   syntax  :-  audio tag

        <audio>

              :

       </audio>


 html <audio> tag :-

          Program 


<!DOCTYPE html>
  <html lang="en">
  <head>
    <title>html audio tag </title>
  </head>
  <body>
    <audio controls>
        <source src="cat.mp3" type="audio/mpeg">
        your browser does not
support the html audio tag.

    </audio>
  </body>
  </html>




 html <audio> tag :-
                

html aside tag

                   Aside tag in html


  HTML <aside> tag provide information about the main content.

ஃ  HTML <aside> tag content should be indirectly related to the main  content.

ஃ  HTML <aside> tag commonly used as a sidebar in the document.

 

HTML Aside tag:-

                  Program

<!DOCTYPE html>
<html>
<head>
   
    <title>aside tag </title>
</head>
<body>
    <h3>html aside tag use </h3>
    <p> html aside tag defines some content
from the content is placed<br>
   html aside tag new tag introduced
 use commonly as a sidebar in the document. </p>
</body>
</html>

HTML aside tag  :-

                   Output

html aside tag/output







READ MORE

html article tag

html address tag

html abbr tag

html unordered list

how-to-create registration form html 

introduction to web design html

html bold tag

Monday, January 8, 2024

Article tagin html


         HTML Article Tag

 

  1]  html <article> tag independent self contained content.

  2] <article> tag content makes sense on its own.

  3]  article tag use

  1.  Blog post
  2. Comment
  3. News story
  4. Forum post  

   

Html Article Tag :-

                         Output 

html article tag/output






Html Article Tag :-

                         Program                     


<!DOCTYPE html>
<html>
<head>
   
    <title>html article tag</title>

</head>
<body>
    <h3>HTML article tag</h3>
    <p>article tag defines independent self
contained <br>
      use to Blog post, comment etc .</p>
   <article>
    <h2> chhatrapati shivaji Maharaj</h2>
    <p>
        chhatrapati shivaji Maharaj Was the
founder of the Maratha<br>
         kingdom of India. studying Ramayana
and also Mahabharata etc .<br> his
         father shahji Bhosale.and his mother
jijabai was a great he was
         the founder<br> of the great Maratha
Kingdom of India.
    </p>
   </article>
       
</body>
</html>


READ MORE

html address tag

html abbr tag

Date time html form

Html Color tag

file upload html

html audio tag