Code:
<fieldset>
<legend>Information</legend>
<form action="" method="">
<div>
<input type="hidden" value="abc" id="hid" name="hid" />
<label for="name">Name:</label>
<input type="text" id="name" name="name" value="" />
</div>
<div>
<label for="email">Email:</label>
<input type="email" id="email" name="email" value="" />
</div>
<div>
<label for="pass">Password:</label>
<input type="password" id="password" name="password" value="" />
</div>
<div>
<label for="age">Age:</label>
<input type="number" id="password" name="password" value="" />
</div>
<div>
<label for="you">Discuss yourself:</label>
<textarea rows="5" cols="10"></textarea>
</div>
<div>
<label for="gen">Gender:</label>
<input type="radio" id="gen" name="gen" value="male" />Male
<input type="radio" id="gen" name="gen" value="female" />Female
<input type="radio" id="gen" name="gen" value="com" />Common
</div>
<div>
<label for="hob">Hobby:</label>
<input type="checkbox" id="hob" name="hob" value="sleep" />sleep
<input type="checkbox" id="hob" name="hob" value="eat" />eat
<input type="checkbox" id="hob" name="hob" value="travel" />travel
</div>
<div>
<label for="nat">Nationality:</label>
<select id="nat" name="nat">
<option>Select</option>
<option>Bangladeshi</option>
<option>Indian</option>
<option>Pakistani</option>
</select>
</div>
<div>
<label for="sub">Subject:</label>
<select multiple id="sub" name="sub">
<option>Select</option>
<option>C#</option>
<option>PHP</option>
<option>Java</option>
<option>Networking</option>
<option>Graphics</option>
</select>
</div>
<div>
<label for="upd">Image Upload:</label>
<input type="file" id="upd" name="upd" value="" />
</div>
<div>
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob" value="" />
</div>
<div>
<input type="submit" id="submit" name="submit" value="Submit" />
<input type="button" id="button" name="button" value="Button" />
</div>
</form>
</fieldset>
Comments
Post a Comment