Computer Science, asked by balkrishnasaboo555, 8 months ago

how to create feedback form in HTML containing two textbox one listbox and one text area and two buttons​

Answers

Answered by Yash2222006
1

Answer:

Introduction:

An HTML form on a web page enables a user to provide inputs to an application. The data entered by the user is then sent to the server for further processing or storing in the database. A sample html form is given as under:

Listing 1: Sample HTML Form

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ">

<html>

<head>

 <title> Sample HTML </title>

 <meta name="Generator" content="EditPlus">

 <meta name="Author" content="">

 <meta name="Keywords" content="">

 <meta name="Description" content="">

</head>

<body>

 <form name="input" action="html_form_action .jsp" method="get">

Username: <input type="text" name="user"><br>

Password: <input type="password" name="pwd"><br>

<input type="radio" name="GENDER" value="male">Male<br>

<input type="radio" name="GENDER" value="female">Female<br>

 

<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>

<input type="checkbox" name="vehicle" value="Car">I have a car  <br>

<input type="submit" value="Submit">

</form>  

</body>

</html>

The above code produces a basic HTML form having the following fields:

Text field for providing Username.

Password field to provide Password.

Radio button to provide the sex either male or female.

Check box to indicate the type of vehicle the user owns

Explanation:

Similar questions