Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a form html file #1993

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions forms.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div align="center">
<h2><u>Admission Form</u></h2>
First Name<input type=""text>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the text should be in under double brackets

Last Name<input type=""text>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

<h3><u>Gender</u></h3>
<input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female
<h3><u>Preferred Location</u></h3>
<input type="checkbox">Bangalore
<input type="checkbox">Mumbai
<input type="checkbox">Kolkata
<input type="checkbox">Chennai
<h3>Course</h3>
<select>
<option>ECE</option>
<option>CSE</option>
</select><br>
Select phone number<input type="number">
<input type="Submit">
<button>SUBMIT</button>
</div>
</body>
</html>