ad

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

Sunday, December 31, 2023

html datetime picker

 html datetime  picker


ஃ datetime  tag html

      syntax :

<input type="datetime-local">


  i]  The  datetime result value  include  the year, month, day, time.

 ii]  Datetime  input type  add the <label> tag use best accessible. 

 iii]  html element represents a specific time.

 iv]   Html tag use to define date and time.

 v]   Display time value 24 hour clock or date in calendar in HTML.

 vi]   datetime used to define machine-readable date/time with time element.


 datetime Value description 


  YYYY  :-   Four digit year ( 01 to 12)
  MM      :-  Two digit month  (01 to 31)
  DD       :-   Two digit day  (01 to 31)
   T          :-   Time value 
 
 HH      :-     Two digit minute (00 to 24)
 MM    :-      Two digite minute (00 to 59)
  SS       :-     Two digit second (00 to 59)
  TZD   :-    Time zone


html datetime  picker

  Html program :-  


<!DOCTYPE html>
<html>
<head>
   <title>select specific date time</title>
</head>
<body>
   <h3>select specific date time</h3>
   <form>
         <input type ="datetime-local"
name ="meetingdate"> <br><br>    
      </label>
      <input type="submit">
   </form>  
 
</body>
</html>


html datetime  picker

Output :-

html date time tag /output











Related Post

👇👍👍👌

css box property

html unordered list

html paragraph tag

Saturday, December 30, 2023

html color tag


html color tag

ஃ color tag syntax :

   <input type="color"> 

  1]  Html is used to create a color picker.
  2]   Used to select a color from a visual interface.
  3]   The value of the tag is always a seven character
        string in the format  eg-#FFA07A

  4]   select user  use a specific color.   

 
  
Html program  
    
          html color tag

<!DOCTYPE html>
<html>

   <head>
      <title>HTML color tag</title>
   </head>
   
   <body>
      <form>
      <h2>select your favorite color</h2> <br>
      <input type="color" name="upclick"
value="#D35400" ><br>upclick<br><br>
      <input type="color" name="downclick"
value="#FF7F50 "><br>downclick
      </form>
   </body>
   
</html>

Output :-

     html color tag

html color tag output








Related Post 
👇👇👌👍👌


html table tag

html id attribute

css position property

Friday, December 29, 2023

file upload html



File Upload  :-


     <input type="file">


   html form tag  Attribute   


 ஃ  The html file tag is used to upload any file to server. 

 ஃ  Form gives  option to upload any file such as image, resume audio etc. to the server.

 File input tag.

  <input> element  use type = "file"  

 ஃ The user choose one or more files form device storage. 


SYNTAX:

          <input type="file">


  HTML program 


               File Upload 


<!DOCTYPE html>
<html>
<head>
   
    <title> select file  </title>
</head>
<body>
    <h2> file to upload</h2>
    <form>
       <label> file upload</label>
       <input type="file" name="newfile">
    </form>
</body>
</html>

  output

              file upload html program 


file upload html /output


Related Post 

html login in form

html anchor tag

how to create login form