ad

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 :-
                
                     Output
HTML audio tag/output

Related Post 

inline css in html

bdo tag in html

php using leap year program

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







Related Post :-

php program print squar number pattern

php program to print Alphabet pattern U

css element selector

Monday, January 8, 2024

Article tag in 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>


Related Post

what is document.getElementById in javascript

how to create a footer page design

php program to print alphabet pattern Y

Wednesday, January 3, 2024

html address tag

Address tag in html


 i]  address tag use to contact information for the author or owner of a document.

ii]   address tag   most of the time generate  in the italic format.

iii]  address tag useful for the business information, URL, phone number,            email address  etc .

iv]  The <address> tag  supports EVENT Attributes in the html.

   

     Syntax :-          

         HTML <address> Tag


Address tag in html

                     Html program :-  

<!DOCTYPE html>
<html>
<head>
      <title>html address tag</title>
</head>
<body>
   <h3>address tag in html</h3>
<!--h3 tag use -->
    <p>
      <address> tag use authorship information
and article ,article    
   </p>
     <address>
      written by authorship  :-<b>
aishwarya</b><br>
      contact Author :-
<a href=
"https://webdesigningtheory.blogspot.com">
web designing theory</a><br>
       visit our blog:-
<a href=
"https://webdesigningtheory.blogspot.com">
blogger website visit</a>
     </address>    
    <!--address  tag use -->
</body>
</html>


Address tag in html

              output :-

address tag in html/output










Read more 

php data type

css id selector

bdi tag in html

Tuesday, January 2, 2024

abbr tag in html

 



abbr tag in html

1] The <abbr> tag define an abbreviation or acronym.

2]  abbr tag used to global  title attribute.

3] abbr tag  is the content write with dotted underline.

 4] abbr tag is typically used to provide explanation or expansion of an abbreviation
      or acronym for user.
 
5]  <abbr> tag help make web content more accessible and understandable for user.
 
 Syntax :-
  
          <abbr title="abbreviation" >abbr</abbr>

Title :- 

 1] attribute is used to provide the full explanation  or  expansion of the abbreviation.
 2]  browser usually display a tooltip with the content of the title attribute.

abbr tag html

    Html program :-  

<!DOCTYPE html>
<html>
<head>
      <title>Abbreviation tag html</title>
</head>
<body>
   <h3>abbreviation tag in html</h3>
<!--h3 tag use -->
    <p>
<h4>abbr tag use a title attribute an
abbreviation or acronym </h4>
<!-- h4 tag use -->    
   </p>


<abbr title="ABBREVIATION "><b>abbr</b></abbr>
<!--abbr tag use -->
</body>
</html>

abbr tag html

        output :-  

abbr tag html /output








Read more

program to print square pattern in php

php program to print alphabet pattern N

php increment/decrement operators