-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from Biswa6769/main
Biswajit Sethi #2
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!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>Student Registration Form</title> | ||
</head> | ||
<body bgcolor="skyblue"> | ||
|
||
<center><h1>Student Registration Form</h1></center> | ||
<hr> | ||
<form> | ||
<p>Firstname | ||
<br> | ||
<input type="text" placeholder="First name" size="100"> | ||
<br> | ||
<br> | ||
Middlename:<br> | ||
<input type="text" placeholder="Middlename:" size="100"> | ||
<br> | ||
<br> | ||
Lastname:<br> | ||
<input type="text" placeholder="Last name:" size="100"> | ||
<br> | ||
<br> | ||
Course :<br><br> | ||
<select name="Course"> | ||
<option value="Course" size="100">Course</option> | ||
<option value="Information Technology">Information Technology</option> | ||
<option value="Computer Science & Technology">Computer Science & Technology</option> | ||
<option value="Electronics & Telecomunication Engineering">Electronics & Telecomunication Engineering</option> | ||
<option value="Electrical engineering">Electrical engineering</option> | ||
</select> | ||
<br> | ||
<br> | ||
Gender :<br> | ||
<input type="radio" value="Male" name="Gender" id="101" size="100">Male | ||
<input type="radio" value="Female" name="Gender" id="101" size="100">Female | ||
<input type="radio" value="Other" name="Gender" id="101" size="100">Other | ||
<br> | ||
<br> | ||
Phone:<br> | ||
<input type="text" name="country code" value="+91" size="2"/> | ||
<input type="number" placeholder="Phone no" size="100"> | ||
<br><br> | ||
Current Address:<br> | ||
<textarea name="Current address:" id="Current address:" placeholder="Current address:" size="100" cols="150" rows="20"></textarea> | ||
<br> | ||
Email<br> | ||
<input type="text" placeholder="Enter Email" size="100"> | ||
<br><br> | ||
Password<br> | ||
<input type="password" placeholder="Enter Password" size="100"> | ||
<br><br> | ||
Re-type Password<br> | ||
<input type="password" placeholder="Retype Password" size="100"> | ||
|
||
<br> | ||
<br> | ||
<center><button type="submit" class="registerbtn" background color="green" size="500">Register</button></center> | ||
</p> | ||
</body> | ||
</html> |