Question: a need the form and also the HTML CODE THAT YOU WRITE Create a Form th
ID: 3836071 • Letter: Q
Question
Question: a need the form and also the HTML CODE THAT YOU WRITE
Create a Form that allows university students to provide their feedback about their courses and college life.
Form should contains:
- Text fields for name, email and college.
- Checkbox about the most things they like in the campus (ex: location, atmosphere … etc.)
- Radio buttons about the most important facilities they need in the campus (Library, Labs, Classrooms, Cafeteria and Garden)
- Multiline text area for comments.
- Drop down list from 5 to 1 about university’s rate (5 indicates Amazing, 4 very good ,…., and finally 1 indicates awful)
- Do not forget submit and reset buttons.
Explanation / Answer
<!DOCTYPE html>
<html>
<head>
<title>Feedback form</title>
</head>
<body>
<form >
Name: <input type="text" name="name" /> <br>
Email: <input type="text" name="email" />
College:<input type="text" name="college" />
Location: <input type="checkbox" name="location1" value="on"> location1 <input type="checkbox" name="location2" value="on"> location2
Campus facilities: <input type="radio" name="subject" value="library"> library <input type="radio" name="garden" value="garden"> garden
Comments: <br /> <textarea rows="5" cols="50" name="comment"> Enter description here...
</textarea>
University rating: <select name="dropdown"> <option value="5" selected>5</option> <option value="4">4</option>
<option value="3">3</option>
<option value="2">2</option>
</select>
<input type="hidden" name="pagename" value="10" /> <input type="submit" name="submit" value="Submit" /> <input type="reset" name="reset" value="Reset" />
</form>
</body>
</html>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.