Answer to Question #257474 in HTML/JavaScript Web Application for Saksham

Question #257474
Create a form, using HTML, for admission to a University. The form should ask for the following information: (3 Marks)  Your email id as user name (it should be of the type xxxx@abc.in)  A pin chosen by you (should have a minimum size of 4 decimal digits)  Name of the Student  City in which student is residing (You should create a drop-down list of about 4 to 6 cities for selection of City, default value for City should be Mumbai)  Select from the options Yes/No for the question Mathematics at 10+2?  The form should include a SUBMIT button
1
Expert's answer
2021-10-27T07:48:45-0400
<html>
 <head>
 <title>Admission to a University</title>
 </head>
 <body>
 <form>
 
 <table>
  <tr>
    <td>Enter email id as user name:</td>
    <td> <input type="text" name="txtEmail" id="email"></td>
  </tr>
  <tr>
    <td>Enter a pin (have a minimum size of 4 decimal digits):</td>
    <td> <input type="text" name="txtPin" id="pin"></td>
  </tr>
  <tr>
    <td>Enter a name of the student:</td>
    <td> <input type="text" name="txtStudentName" id="studentName"></td>
  </tr>
  <tr>
    <td>Select a city in which student is residing:</td>
    <td> <select>
 <option value="Mumbai">Mumbai</option>
 <option value="Delhi">Delhi</option>
 <option value="Bangalore">Bangalore</option>
 <option value="Agra">Agra</option>
 <option value="Azamgarh">Azamgarh</option>
 <option value="Ballia">Ballia</option>
 </select>
    </td>
  </tr>
  <tr>
    <td>10+2=12. Is it correct?</td>
    <td> <select>
 <option value="yes">Yes</option>
 <option value="no">No</option>
 </select></td>
  </tr>
</table>
<button>Submit</button>
 </form>
</html>

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS