Wednesday, June 6, 2018

HTML (Table,Input,Radio,Checkbox)







<!DOCTYPE html>

   <html>
   <head>
       <title>
           Our First Website
       </title>
   </head>
    <body>
     
       
         <table border="">
             <tr>
                 <th>Name</th>
                 <th>Age</th>
                 <th>Class</th>
                 <th>Roll</th>
             </tr>
             <tr>
                 <td>Rahim</td>
                 <td>30</td>
                 <td>16</td>
                 <td>007</td>
             </tr>
              <tr>
                 <td>Karim</td>
                 <td>31</td>
                 <td>17</td>
                 <td>008</td>
             </tr>
         </table>
         <input type="test" placeholder="Username/Email" />
        <br />
         <input type="password" placeholder="Your Password" />
         <br />
         <br />
         <input type="email" />
         <input type="url" />
         <input type value="Always give value" />       
         <input type="file" />
        <br />
         <br />
         <select>
         <option>Day</option>
         <option>1</option>
         <option>2</option>
         </select>
         <select>
         <option>Month</option>
         <option>1</option>
         <option>2</option>
         </select>
         <select>
         <option>Year</option>
         <option>1</option>
         <option>2</option>
         </select>
         <br />
               
         <p>
         <input name="gf" id="ami" type="radio" />
         <lebel for="ami" >Male</lebel>
       
         <input name="gf" id="tumi" type="radio" />
         <lebel for="tumi" >Female</lebel>
       
         <input name="gf" id="amra" type="radio" />
         <lebel for="tumi" >Both</lebel>
         </p>
       
         <input id="valoi" type="checkbox" />
         <lebel for="valoi" >I am Agree</lebel>
       
       
       
         <img src="HTMLCSS/DRAGON1CS.jpg" />
       <a href="http//google.com" target="_blank"></a>
    </body>
</html>

2 comments:

Post a Comment

Comments