Q:

Create an XHTML document that allows prospective students to provide feedback

belongs to collection: HTML Examples

0

Problem:- A local university has asked you to create an XHTML document that allows prospective students to provide feedback about their campus visit. Your HTML document should contain a form with text boxes for a name, address, and e-mail. Provide checkboxes that allow prospective students to indicate what they liked most about the campus. The checkboxes should include: students, location, campus, atmosphere, dorm rooms and sports. Also, provide radio buttons that ask the prospective students how they became interested in the university. Options should include friends, television, Internet, and other. In addition, provide a text area for additional comments, a submit button and a reset button.

How to Solve:- Just follow the instruction given in problem statement and design according to the requirement as we can see that in this problem we have to design a College feedback form. We also know that college has many activity and part. So see the Explanation section for code design.

Elements are used in Design

1. List
2. Radio Button
3. Checkbox
4. Textarea
5. Submit Button
6. Email

Explanation:- First we have to use the name, Email, and address and after that, there is question according to the question we have to design a web page as for first question checkbox is necessary cause there may be many areas you visited in college and you like it. The second question is how to become interested in university/college so people should have an option so this is the second phase of our design and last is a comment for any suggestion and complain after all this click on Submit button. this is like a participating in a Survey.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

University.html

<html>
 <head><title>Campus Visit</title>
 </head>
 <body>
 <form name="std_details" method="post">
 <label>Name:</label>
 <input type="text" size="50"><br><br><br>
 <label>Address</label>
 <textarea height="5" width="50"></textarea><br><br>
 <label>Email</label>
 <input type="email"/><br><br>
 What are things that you like:<br><br>
 <ul>
 <li><input type="checkbox" name="camp">Campus</li>
 <li><input type="checkbox" name="camp">Location</li>
 <li><input type="checkbox" name="camp">Student</li> 
 <li><input type="checkbox" name="camp">Atmosphere</li>
 <li><input type="checkbox" name="camp">Dorm Room</li>
 <li><input type="checkbox" name="camp">Sport</li>
 </ul><br>
 How to became interested in university:<br><br>
 <ul>
 <li><input type="radio" name="iu">Friends</li>
 <li><input type="radio" name="iu">Television</li>
 <li><input type="radio" name="iu">Internet</li>
 <li><input type="radio" name="iu">Others</li>
 </ul>
 <br>
 Comment<br><br>
 <textarea height="5" width="50"></textarea><br>
 <button>Submit</button>
 </form>
 </body>

</html>

Output:


 


 

 

What are things that you like:

  • Campus
  • Location
  • Student
  • Atmosphere
  • Dorm Room
  • Sport


How to became interested in university:

  • Friends
  • Television
  • Internet
  • Others


Comment


need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

<< Create a HTML Document Using Frame Which Should Sa...