<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…