Space for google add

Design A Simple Form



 Programme :- Design A Simple Form 

<html>
<body>
<form>
<style > form {border : solid 3px ;} </style>
<head>
<title>  <center>"CAR SURVEY"</center> </title>
<h1><center><font color ="#ff43a4">Welcome to CAR survey</font></h1></center>
<form border : 2px solid red>
           First name : <input type ="text"name="first name" /><br/>
<br/>
            Last Name : <input type ="text" name="lastname"/><br/>
<br/>
             E-mail ID: <input type ="text"name="e-mail id"/>
<br>
Gender :
                  <input type="radio"name="gender" value="Male"/>Male 
                  <input type="radio" name="gender" value="Female"/>Female<br/>
<br/>
Qualification: 
                    <input type="checkbox" name="qualification" value="Graduate"/>Graduate
                    <input type="checkbox" name="qualification" 
                    value="Under Graduate"/>Under Graduate<br/> 
<br/>
City:
        <select>
        <option value="Pune">Pune</option>
        <option value="Satara">Satara</option>
        <option value="Dhule">Dhule</option>
        <option value="Latur">Latur</option>
        </select><br>
        <br/>
Which Car you want? <select>
                                     <option value="Audi">Audi</option>
                                     <option value="Mercedes">Mercedes</option>
                                     <option value="Volvo">Volvo</option>
                                     <option value="Duster">Duster</option>
                                     </select><br/>
   <br/>
Any other requirement?<br/>     
 <TEXTAREA ROWA="4" COLS="50">     Edit the contents in this box  </textarea>
<br/>
<br/>
Password:<input type="Password" name="pwe" /><br>
<br/>
Username:<input type="text" name="user"/><br>
<br/>
<p> Would you like to login?</p>
<input type="radio" name="login id"= "Yes">
<lable for="Yes"> Yes</lable>
<input type="radio" name="login id"= "No">
<lable for="No"> No</lable>
<br/>
<center><input type="Submit" value="Submit"/></center>
<br/>
<center><input type="Reset" value="Reset"/></center>
</form>
</head>
</html>
Output :- 


Post a Comment

0 Comments