Computer Science, asked by TbiaSamishta, 11 months ago

Create a re-registration form using HTML having the following input fields - Enrolment Number (it should contain only decimal digits), Name of the student (should contain only alphabets), programme code (it should be selected from a drop down list, default value BCA), Semester in which re-registering (should be maximum 10), valid email ID (it should be validated), Fee submission details (like Draft no, draft date and amount of fee submitted). The form should include a SUBMIT button. You must create a CSS file for this form. This CSS file should define font family, font size as 14 point, font colour as dark green, and background colour as light blue. Validate the form using JavaScript code as stated for various fields.

Answers

Answered by aqibkincsem
0

"The following are the html coding for the registration form

<html>

<body>

<form method=”post”>

<label> Enrolment Number </label>

<input type=number value=””  name=”eno”>

<label> Name of the student </label>

<input type=text value=”” name=”sname”>

<label> programme code</label>

<input type=text value=”” name=”code” placeholder=”BCA”>

<label> Semester</label>

<input type=text value=”” name=”sementer”>

<label> Email ID</label>

<input type=text value=”” name=”email”>

<label>  Fee submission details </label>

<input type=text value=”” name=”fees”>

<submit type=”button” name=”s1”> Register</submit>

</form>

</body>

</html>

"

Similar questions