Creating Sample Feedback Form using HTML - Technology & Web designing

Breaking

Wednesday, 6 May 2020

Creating Sample Feedback Form using HTML

In last Post we have studied about all the tags & attribute of form objects and all the necessary things are are needed to creat a Professional forms like Feedback forms, Admission Form, Hotel Booking Forms.

In this Post we will creat a Sample Feedback Form which will give you an idea of all the elements of form objects that how to use them and where to use them. See all the things carefully of what has used and you can make your own beautiful forms by yourself.

Let see the example

Programe :


<html>
<head>
<title>Form</title>
</head>
<body bgcolor="white">
<h2 align="center">Feedback form<h2>
<form>
<p>
First name: <input name="first name" type="text"><br><br>

Last name: <input name="last name" type="text"><br><br>

Email address:<input name="email" type="text"><br><br>

Gender:<br>

<input name="gender" type="radio" value="Male">Male<br>

<input name="gender" type="radio" value="Female">Female<br>

Hobbies
<ol>
<li><input name="B1" type="checkbox">Reading Books</li>

<li><input name="B1" type="checkbox">Listening to music<li>

<li><input name="B1" type="checkbox">Playing Games</li>
</ol>

What would you like to do today?<br><br>
<select size="2">
<option value="drink">Drink coffee
<option selected=""

value="read">Read A Book

<option value="walk">Take A Walk
<option>Exercise
</option></option></option></option></select><br>

Please enter your comment below: <br><br>
<textarea cols="20" name="positive" rows="10"></textarea><br>

<input type="submit" value="Send">
<input type="reset" value="clear Form">

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


In this program we have used all the necessary things used in Feedback form and we have used almost all the objects of forms like textbox, radio button, checkbox, submit button, select tag, textarea tag etc.

So let's see the output

Output :


Feedback form

First name:

Last name:

Email address:

Gender:

Male

Female

Hobbies

  1. Reading Books
  2. Listening to music
  3. Playing Games

What would you like to do today?

Please enter your comment below:



No comments:

Post a Comment

If you have any doubts regarding this please comment or email us.