0% found this document useful (0 votes)
12 views2 pages

WTassignment3 HTML

The document is an HTML code for a student registration form featuring fields for first name, middle name, last name, course selection, gender, phone number, current address, email, and password. It includes a submit button styled with CSS for visual appeal. The form is designed to collect essential information from students for registration purposes.

Uploaded by

anishmaurya2004
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views2 pages

WTassignment3 HTML

The document is an HTML code for a student registration form featuring fields for first name, middle name, last name, course selection, gender, phone number, current address, email, and password. It includes a submit button styled with CSS for visual appeal. The form is designed to collect essential information from students for registration purposes.

Uploaded by

anishmaurya2004
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

<html>

<head>
<title>Student registration Form</title>
</head>
<body style="background-color: pink;">
<section style="width: 100%;background-color:#B8E2F2;">
<br>
<h1 align="center">Student Registration Form </h1>

<form action="#" style="margin: 40px;width: 1350px;background-color:


#B8E2F2;">
<hr color="white">
<label for="Firstname">Firstname</label>
<br>
<input type="text" placeholder="Firstname" style="width:
100%;height: 40px;">
<br> <br>
<label for="Middlename">Middlename</label><br>
<input type="text" placeholder="middlename" style="width:
100%;height: 40px;">
<br> <br>
<label for="Lastname">Lastname</label><br>
<input type="text" placeholder="Lastname" style="width:
100%;height: 40px;">
<br><br>
<label for="Course">Course:</label>
<select name="Course">
<option value="" disabled selected>Courses</option>
<option value="B.Sc (CS)">B.Sc (CS)</option>
<option value="BCA">BCA</option>
<option value="BBA">BBA</option>
</select>
<br><br>
<label for="gender">Gender:</label><br>
<input type="radio" id="gender" name="gender"
value="male">Male
<input type="radio" id="gender" name="gender"
value="female">Female
<input type="radio" id="gender" name="gender"
value="others">Others
<br><br>
<label for="phone">Phone:</label><br>
<input type="number" placeholder="+91" style="width:
100%;height: 40px;">
<br> <br>
<input type="number" placeholder="phone no." style="width:
100%;height: 40px;">
<br><br>
<label for="currentaddress">Cureent Address:</label><br>
<textarea style="width: 100%;height: 100px;" ></textarea>
<br>
<br>
<label for="email">Email</label><br>
<input type="email" placeholder="Enter Email"
style="width: 100%;height: 40px;">
<br><br>
<label for="password">Password</label><br>
<input type="password" placeholder="Enter Password"
style="width: 100%;height: 40px;">
<br><br>
<label for="password">Re-type Password</label><br>
<input type="password" placeholder="RetypePassword"
style="width: 100%;height: 40px;">
<br>
<br>
<input type="submit" value="Register"
style="background-color: #20ba20; color: white; width:
100%;height: 40px;">

</form>
</section>
</body>
</html>

You might also like