0% found this document useful (0 votes)
36 views

Java Script Form For New Student Admission

The document contains an HTML form with fields for name, address, subjects using checkboxes, gender using radio buttons, semester using a dropdown select, and submit and reset buttons.

Uploaded by

rohitt69
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views

Java Script Form For New Student Admission

The document contains an HTML form with fields for name, address, subjects using checkboxes, gender using radio buttons, semester using a dropdown select, and submit and reset buttons.

Uploaded by

rohitt69
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<html>

<head>
<title>
Forms In Js
</title>
</head>
<body>
<form name="My Form">
Full Name : <input type="text" placeholder="Enter your Name " />
<br/>
Address : <textarea rows="3",cols="30" , placeholder="Enter Your
Address"></textarea> <br/>

Subjects : <br/>
Operating Systems : <input type="checkbox" name="osy"
value="Operating System"/> <br/>

Software Testing : <input type="checkbox" name = "Ste"


value="Software Testing"/> <br/>

Client Side Scripting : <input type="checkbox" name="CSS"/> <br>

Gender: <br/>
Male : <input type="radio" name="Gender" value="male"/> <br>
Female : <input type="radio" name="Gender" value="Female" />

Select Your Semester : <br/>


<select name="mylist">
<option> 1st</option>
<option> 2st</option>
<option> 3st</option>
<option> 4st</option>
<option> 5st</option>
<option> 6st</option>

</select>

<input type="submit" value="submit"/> <br>


<input type="reset" value="reset"/> <br>
</form>

</body>
</html>

You might also like