This is customer form

form

code source

<html>
<head>
<title>form</title>
</head>
<body>
<form>
<fieldset>
<legend><strong>Customer Details</strong></legend>
<First Name :<input type="text" name="firstname"><br><br>
Last Name :<input type="text" name="lastname"><br><br>
Password :<input type="password" name="pwd"><br><br>
Gender :
<input type="radio" name="Gender" value="Male">Male
<input type="radio" name="Gender" value="Female">Female<br><br>
Day :
<input type="checkbox" name="day">Monday
<input type="checkbox" name="day" checked>Tuesday
<input type="checkbox" name="day">Wednessday<br><br>
<p>Select the cars</p>
<select>
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="Nano">Nano</option>
<option value="Tata">Tata</option>
</select><br><br>
Description :
<textarea rows="3" cols="30">Enter yourself</textarea><br><br>

Choose color :<input type="color" name="choosecolor"><br><br>
Birthday :<input type="date" name="dob"><br><br>
Email :<input type="email" name="mail"><br><br>
File :<input type="file" name="choosefile"><br><br>
Month :<input type="month" name="choosemonth"><br><br>
Quantity :<input type="number" name="quantity" min="1" max="10"><br><br>
Rang :<input type="rang" name="rating" min="1" max="10"><br><br>
Search :<input type="search" name="search"><br><br>
Website :<input type="url" name="enterurl"><br><br>



<input type="Submit" value="Submit">
<input type="Reset" value="Reset">
</fieldset>
</form>
</body>
</html>