Home » Blog » Simple Design Feedback Form

Simple Design Feedback Form

<style> tag is used to apply the css.

<form> tag is used to used form attributes.

<table> tag is used to create table. <tr> tag creates the row and <td> tag is used to create the column. <th> tag is used to apply header row for table.

<html>
	<head>
		<title>Feedback Form</title>
		<style type="text/css">
		td
		{
			font-size: 15pt;
		}
		</style>
	</head>
	<body align="center" bgcolor="#cd93cc">
		<h2><b><u>FEEDBACK FORM</u></b></h2>

		<form method="post" name="feedbackform" action="fform.php">
		<table align="center" border=3 bordercolor="black">

		<tr>
			<td>Name : </td>
			<td><input type="text" name="name" placeholder="Firstname Secondname Lastname" size="40"></td>
		</tr>
		
		<tr>
			<td>Enrollment No. : </td>
			<td><input type="number" name="mno" placeholder="166470307001"></td>
		</tr>

		<tr>
			<td>Email : </td>
			<td><input type="email" name="email" placeholder="abc123@gmail.com" size="40"></td>
		</tr>

		<tr>
			<td>Review : </td>
			<td><input type="radio" name="review" value="Excellent" checked>Excellent<br/>
				<input type="radio" name="review" value="Very Good">Very Good<br/>
				<input type="radio" name="review" value="Average">Average<br/>
				<input type="radio" name="review" value="Poor">Poor</td>
		</tr>	

		<tr>
			<td>Comment : </td>
			<td><textarea rows="7" cols="25" name="msg" placeholder="Write Your Comment Here"></textarea></td>
		</tr>

		<tr>
			<td><input type="submit" name="submit" value="SUBMIT"></td>
			<td><input type="reset" name="reset" value="RESET"></td>
		</tr>

		</table>
		</form>

	</body>
</html>

OutPut

Leave a Reply

Your email address will not be published.