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.
Tip:- Always create a folder for separate web page file for avoiding unnecessary mixing and irritating. Check the Output below of the program. If you are having any problem highly recommended following the given web page.
Recommendation:- Before going for this assignment follow the given assignment so you can understand all Tags very well.
1. Create An HTML Page With Different Types Of Frame Such As Floating Frame Navigation Frame, Mixed Frame In HTML
2. Create A Student Registration Form Using Table In HTML
Note:- If you have a Better design than this page and you want to publish your post with all Credit Than you are welcome to read This.
Solution:-
Copy Start From Here
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>
Copy Ends Here
Output:-
You Should See
1. Design A Page. The Page Must Be Useful For Colleges For Updating Daily Activities And Students Information
2.Build A Simple Calculator Using HTML Form Elements And JavaScript.
3.Write A JavaScript That Calculates The Squares And Cubes Of The Numbers From 0 To 10 And Outputs XHTML Text That Displays The Resulting Values In An XHTML Table Format, As Follows: Number Square Cube
4. Write A Program That Inputs An Encrypted Four-Digit Integer And Decrypts It To Form The Original Number.
5. Write A Complete JavaScript Program To Calculate And Display The Volume Of The Sphere
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.
Tip:- Always create a folder for separate web page file for avoiding unnecessary mixing and irritating. Check the Output below of the program. If you are having any problem highly recommended following the given web page.
Recommendation:- Before going for this assignment follow the given assignment so you can understand all Tags very well.
1. Create An HTML Page With Different Types Of Frame Such As Floating Frame Navigation Frame, Mixed Frame In HTML
2. Create A Student Registration Form Using Table In HTML
Note:- If you have a Better design than this page and you want to publish your post with all Credit Than you are welcome to read This.
Solution:-
Copy Start From Here
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>
Copy Ends Here
Output:-
You Should See
1. Design A Page. The Page Must Be Useful For Colleges For Updating Daily Activities And Students Information
2.Build A Simple Calculator Using HTML Form Elements And JavaScript.
3.Write A JavaScript That Calculates The Squares And Cubes Of The Numbers From 0 To 10 And Outputs XHTML Text That Displays The Resulting Values In An XHTML Table Format, As Follows: Number Square Cube
4. Write A Program That Inputs An Encrypted Four-Digit Integer And Decrypts It To Form The Original Number.
you missed out the reset button sir.
ReplyDeleteHi,
DeleteThanks for notifying a mistake, I will fix it and update. Please keep visit and let me know the other mistakes.
Thanks