Basic HTML Tag Used

<!---- 
Author: Anand
-->



<html>
      <head>
            <title> Welcome in the World of HTML </title>
            
      <form align="center">
            
      <body bgcolor="##33CCFF">
    
      <select name="DropDown">
            
          <option  id="1"  value="Anand" > Anand </option>
          
           <option  id="2" value="Antrish" >Antrish </option>
           
          <option  id="3" value="Ajeet" >Ajeet </option>
         
      </select>
      
      <br></br>
      
    DatePicker:  <input type="date" value="date"/>
    
       <br></br>
       
    Name:<input type="text" name="Username" />
    
     <br></br>
     
     Password:<input type="password" name="password" />
     
      <br></br>
      
      Male:<input type="radio" name="Male" value="male" checked="checked" />
      
       Female:<input type="radio" name="Male" value="male" checked="checked" />
       
          <br></br>
          
          ON:<input type="checkbox" name="ON" value="ON" checked="checked" />
          
          OFF:<input type="checkbox" name="OFF" value="OFF" checked="checked" />
          
            <br></br>
            
            <ol>
                  
                  <li>Ajeet</li>
                  
                  <li>Antrish</li>
                  
                  <li>Anand</li>
                  
            </ol>

            
             <br></br>
 <input type="file" name="Browse File" value="" width="50" />
             
              <br></br>
              
              <a href="http://learnjavabyanand.blogspot.in/">Click here</a>
              
            <br></br>
            
            <input type="submit" value="Submit" name="Submit" />

     
      </bdoy>
      
      </form>
      
</head>
  
</html>

             

            

Comments

Popular posts from this blog

Converting JSONArray into CSV file in java

Online Book Store Website Using Java

How to read CSV File in Java