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

Form Tag Code

The document is an HTML template for a user registration form. It includes fields for name, email, password, gender selection, and a feedback message. A submit button is provided to send the form data.

Uploaded by

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

Form Tag Code

The document is an HTML template for a user registration form. It includes fields for name, email, password, gender selection, and a feedback message. A submit button is provided to send the form data.

Uploaded by

bsccs230267
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

DOCTYPE html>

<html>

<head>

<title>User Registration Form</title>

</head>

<body>

<h2>User Registration Form</h2>

<form>

<label for="name">Name:</label><br>

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

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

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

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

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

<label for="gender">Gender:</label><br>

<select id="gender" name="gender">

<option>Male</option>

<option>Female</option>

<option>Other</option>

</select><br><br>

<label for="message">Feedback:</label><br>

<textarea id="message" rows="4" cols="30"></textarea><br><br>


<button type="submit">Submit</button>

</form>

</body>

</html>

You might also like