html checkbox techno smarter

Solutions on MaxInterview for html checkbox techno smarter by the best coders in the world

showing results for - "html checkbox techno smarter"
Alejandro
14 May 2016
1<!DOCTYPE html>
2<html>
3<head>
4<title>HTML Form </title>
5</head>
6<body>
7<div class="header">
8<form action="" name="myForm" method="post">
9Name:
10<input type="text" name="name" value="Enter your name"><br><br>
11Father Name:
12<input type="text" name="fname" value="Enter your Father Name"><br><br>
13Gender:
14Male<input type="radio" name="ab">Female<input type="radio" name="ab"><br><br>
15Address
16<textarea name="address" cols="20" rows="10">Enter your address
17</textarea><br><br>
18Language:
19<select name="subject">
20<option>Hindi</option>
21<option>English</option>
22<option>Other</option>
23</select><br><br>
24Email:
25<input type="email" name="email" value="Enter your email"><br><br>
26Mobile Number :
27<input type="number" name="mobile" value="Enter your Mobile No"><br><br>
28Password:
29<input type="password" name="password" value="Enter your Password"> <br><br>
30<input type="submit" name="sub" value="submit">
31
32</form>
33</div>
34</body>
35</html>
36