Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>
Survey form
</h1>
<form>
Enter fname:<br>
<input type="text" name="fname" placeholder="Enter your first name">
<br><br>
Enter lname:<br>
<input type="text" name="lname" placeholder="Enter your last name">
<br><br>
Select Gender:<br>
<input type="radio" value="male">Male
<input type="radio" value="female">Female
<br><br>
Enter your Favorite Language:<br>
<input type="checkbox" value="c">C
<input type="checkbox" value="c++">C++
<input type="checkbox" value="java">Java
<input type="checkbox" value="javascript">Javascript
<br><br>
Enter your Mobile number:<br>
<input type="text" name="mobile no." >
<br><br>
Your feedback:<br>
<textarea name="" rows="8" cols="20">
</textarea>
<br><br>
<input type="Button" value="Submit">
<input type="Button" value="Reset">

</form>
</body>
</html>

You might also like