Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

\"HTML \" 1. A little description about the survey. 2. Text box to insert studen

ID: 3746376 • Letter: #

Question

"HTML "

1. A little description about the survey.

2. Text box to insert students name, student ID and email address.

3. Student's Major (Options: Computer Science, Information Technology, Information System) [implement with radio button]

4. Student's Minor (Options: Computer Science, Information Technology, Information System and Cybersecurity)

5. Student's Level (Junior, Senior, Freshman or Sophomore)

6. What dos the student like about the major (options: Courses, Instructors, Lab facilities, Co-op/Intern opportunities) [implement with check box]

7. Rate UNI Academic Program (options: Excellent, 5, 4, 3, 2, 1, Needs Improvement)

8. Submit (invokes the action link and goes there) and Reset (clears the data from the form) buttons at the bottom.

Explanation / Answer

<html>
<head>
<title>Student Survey</title>
</head>
<body>
<center><h3>A little description about the survey</h3></center>
  
<!-- Form tag with action and type method--->
<form action="action.php" method="post">
<!-- Student Name Text box-->
<label for="name">Student Name</label>
<input type="text" name="name" id="name"/>
<br/><br/>
<!-- Student ID Text box-->
<label for="sid">Student ID</label>
<input type="text" name="sid" id="sid"/>
<br/><br/>
<!-- Student Email Text box-->
<label for="email">Email</label>
<input type="email" name="email" id="email"/>
<br/><br/>
<!-- Student Major selecting radio button-->
<label for="major">Student Major</label><br/>
<input type="radio" name="major" value="Computer Science">Computer Science<br/>
<input type="radio" name="major" value="Information Technology">Information Technology<br/>
<input type="radio" name="major" value="Information System">Information System<br/><br/>

<!-- Student Minor selecting radio button-->   
<label for="minor">Student Minor</label><br/>
<input type="radio" name="minor" value="Computer Science">Computer Science<br/>
<input type="radio" name="minor" value="Information Technology">Information Technology<br/>
<input type="radio" name="minor" value="Information System">Information System<br/>
<input type="radio" name="minor" value="Cyber System">Cyber System<br/><br/>
  
<!-- Student Level selecting radio button-->
<label for="level">Student Level</label><br/>
<input type="radio" name="level" value="Junior">Junior<br/>
<input type="radio" name="level" value="Senior">Senior<br/>
<input type="radio" name="level" value="Freshman">Freshman<br/>
<input type="radio" name="level" value="Sophomore">Sophomore<br/><br/>
  
<!-- Feedback selecting checkbox button-->
<label>What does the Student like about the major </label><br/>
<input type="checkbox" name="" value="Courses"/> Courses<br/>
<input type="checkbox" name="" value="Instructors"/> Instructors<br/>
<input type="checkbox" name="" value="Lab Facilities"/> Lab Facilities<br/>
<input type="checkbox" name="" value="Co-op/Intern opportunities"/> Co-op/Intern opportunities<br/><br/>

<!-- Rating radio button-->
<label>Rate UNI Acadamic Program</label><br/>
<input type="radio" name="rating" value="Excellent">Excellent<br/>
<input type="radio" name="rating" value="5">5<br/>
<input type="radio" name="rating" value="4">4<br/>
<input type="radio" name="rating" value="3">3<br/>
<input type="radio" name="rating" value="2">2<br/>
<input type="radio" name="rating" value="1">1<br/>
<input type="radio" name="rating" value="Needs Improvement">Needs Improvement<br/><br/>
<br/>
<!--submit button-->
<input type="submit" value="Submit"/>
<!--reset button-->
<input type="reset" value="Reset"/>
</form>
</body>
</html>