form creating
<html>
<body>
<form>
Name : <br />
<input type="text" size="35" maxlength="10" placeholder="Please enter Full Name" disabled="disabled">
<br /><br />
Password :<br />
<input type="password">
<br /><br />
Address :<br />
<textarea cols="25" rows="4"></textarea>
<br /><br />
Country :<br />
<select multiple="multiple" size="2">
<option>Godhra</option>
<option selected="selected">Godhra1</option>
<option>Godhra2</option>
</select>
<br /><br />
Gender :<br />
<input type="radio" name="1" id="m"><label for="m">Male</label>
<input type="radio" name="1" id="f"><label for="f">Female</label>
<br /><br />
Hobby :<br />
<input type="checkbox">Cricket
<input type="checkbox">Sleeping
<br /><br />
Upload Box <br />
<input type="file">
<br /><br />
<input type="button" value="Click Me" onclick="this.type='radio'">
<input type="reset">
<input type="submit">
</form>
</body>
</html>
<html>
<body>
<form>
Name : <br />
<input type="text" size="35" maxlength="10" placeholder="Please enter Full Name" disabled="disabled">
<br /><br />
Password :<br />
<input type="password">
<br /><br />
Address :<br />
<textarea cols="25" rows="4"></textarea>
<br /><br />
Country :<br />
<select multiple="multiple" size="2">
<option>Godhra</option>
<option selected="selected">Godhra1</option>
<option>Godhra2</option>
</select>
<br /><br />
Gender :<br />
<input type="radio" name="1" id="m"><label for="m">Male</label>
<input type="radio" name="1" id="f"><label for="f">Female</label>
<br /><br />
Hobby :<br />
<input type="checkbox">Cricket
<input type="checkbox">Sleeping
<br /><br />
Upload Box <br />
<input type="file">
<br /><br />
<input type="button" value="Click Me" onclick="this.type='radio'">
<input type="reset">
<input type="submit">
</form>
</body>
</html>
No comments:
Post a Comment