How to create form using table in html
How to create form using table in html.
This is vedio and code of creating list.
For vedio click here 👇👇👇
<html>
<head>
<title> Form</title>
</head>
<body >
<form action="pagename" method="get/post">
<label>
frist name
</lable>
<input type="text" name="f-name" id="f-name"> <br><label>
Last name
</lable>
<input type="text" name="f-name" id="l-name"> <br><label>
</lable>
<input type="text" name="f-name" id="e-name"> <br> <label>
pasword
</lable>
<input type="password" name="p-pasword" id="p-pasword"> <br>
<label>
Education
</lable>
<input type="checkbox" name="u-Education" id="u-Education" value="B.a">
<label>B.a </lable>
<input type="checkbox" name="u-Education" id="u-Education" value="M.a">
<label> M.a</label>
<input type="checkbox" name="u-Education" id="u-Education" value="MCS">
<label> Mcs</label><br>
<label>
Gender
</label>
<input type="radio" name="u-gender" id="u-gender" value="Male">
<label> Male</label>
<input type="radio" name="u-gender" id="u-gender" value="Female">
<label> Female</label><br>
<select name="country id=u-country">
<option value="pak">
Pkistan
</option>
<option value="China">
China
</option>
<option value="Iran">
Iran
</option>
</select><br>
<input type="submit" name="f-name" id="u-b.a value-"b.a">
</body>
</form>
0 Comments