Tuesday, April 26, 2011

HTML form making program, form of Registration, HTML registration form

Make your own form programm Of HTML Registration for std 12.

Here is the sample of registration program, it is in simple way of making you understand, which you can develope yourself as per your design & requirements. for more sample program you can view the lable and find out your desire requirements.


<html>
<head>
<title>Whz kid Form</title>
<style type="text/css">
h1{font-size:26;
color:Blue;
font-family:Gujrati Saral-3;}
h3{font-size:15;
color:Red;
font-family:Times New Roman;}
lable { text-align:left;
width:130px;
display:block;
color:Green;
float:left;
clear:left;}
</style>
</head>
<body>
<form name="frm1" action="new.html" method="get">
<h1><center> xiKt iv2aly </center></h1>
<h3> Login Information </h3>
<lable for="username"> Username: </lable>
<input type="text "name="username " value="username "size="10"maxlength="10">
<br>
<lable for="email "> Email: </lable>
<input type="text" name="email " value="enter email here "size="25"maxlength="30">
<br>
<lable for=" password1"> Password: </lable>
<input type= "password " name="password1">
 <small> must be 8-25 characters long </small>
<br>
<lable for="password2"> Confirm Password: </lable>
 <input type="password" name ="password2 ">
 <small> should match the password </small>
<br>
<h3> Other information</h3>
<lable for="name "> Name: </lable>
<input type="text" name="name">
<br>
<lable for="mobile"> Mobile No: </lable>
<input type="text"  name="mobile">
<br>
<lable for="imageName"> Image:</lable>
<input type="file"name="ImageName">
<small> upload your image file(optional)</small>
<br>
<lable for="Country">Country:</lable>
<select name="Country" >
<option  value="France">France</option>
<option  selected value="India">India</option>
<option value="New Zeland">New Zeland</option>
<option value="United Kingdom">United Kingdom</option>
<option value="United States">United States</option>
</select>
<br>
<lable for="alertBy">Receive alert by:</lable>
<input type="radio" name="alert by" value="Email"checked>Email
<input type="radio" name="alert by" value="SMS">SMS <br>
<lable for="game"> Games of Interest:</lable>
<input type="checkbox" name="game" value="Shooting"checked>Shooting
<input type="checkbox" name="game" value="Puzzle">Puzzle
<input type="checkbox" name="game" value="Detective">Detective
<input type="checkbox" name="game" value="scrabble">Scrabble
<br>
<br>
<lable></lable>
<input type="Reset" value="Reset">
<input type= "Submit" value="Submit"><br>
</form>
</body>
</html>