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

JS_Practical_06

The document is an HTML template for a registration form that includes fields for full name, email, password, gender selection, country dropdown, and a bio text area. It requires user input for all fields except the bio. The form has a submit button but does not include any functionality for processing the submission.

Uploaded by

Sahil Badhe
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)
9 views2 pages

JS_Practical_06

The document is an HTML template for a registration form that includes fields for full name, email, password, gender selection, country dropdown, and a bio text area. It requires user input for all fields except the bio. The form has a submit button but does not include any functionality for processing the submission.

Uploaded by

Sahil Badhe
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

Practical No : 06

1.<!DOCTYPE html>

<html>

<head>

<title>Registration Form</title>

</head>

<body>

<h1>Registration Form</h1>

<form>

<label for="fullName">Full Name:</label>

<input type="text" id="fullName" name="fullName" required><br><br>

<label for="email">Email:</label>

<input type="email" id="email" name="email" required><br><br>

<label for="password">Password:</label>

<input type="password" id="password" name="password" required><br><br>

<label>Gender:</label>

<input type="radio" id="male" name="gender" value="male">

<label for="male">Male</label>

<input type="radio" id="female" name="gender" value="female">

<label for="female">Female</label><br><br>

<label for="country">Country:</label>

<select id="country" name="country">

<option value="usa">United States</option>

<option value="India">India</option>

<option value="uk">United Kingdom</option>


<option value="australia">Australia</option>

</select><br><br>

<label for="bio">Bio:</label><br>

<textarea id="bio" name="bio" rows="4" cols="50"></textarea><br><br>

<input type="button" value="Submit">

</form>

</body>

</html>

• Out Put

You might also like