0% found this document useful (0 votes)
72 views3 pages

Lab Report # 7: Title: Make Registration Form Using HTML: Registration Form

The document describes a lab report on creating a registration form using HTML. The HTML code provided contains the necessary form fields to collect a user's first name, last name, age, gender, country, state/province, city, email, phone number, password, and confirmation of password. The form is centered on the page and uses tables to organize the labels and input fields.

Uploaded by

zia
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)
72 views3 pages

Lab Report # 7: Title: Make Registration Form Using HTML: Registration Form

The document describes a lab report on creating a registration form using HTML. The HTML code provided contains the necessary form fields to collect a user's first name, last name, age, gender, country, state/province, city, email, phone number, password, and confirmation of password. The form is centered on the page and uses tables to organize the labels and input fields.

Uploaded by

zia
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
You are on page 1/ 3

LAB REPORT # 7

TITLE:
MAKE REGISTRATION FORM USING
HTML:

Registration Form:
HTML CODING:
<html>
<head><title>Registration Form</title></head>
<body bgcolor="yellow"><center>
<h1><center><font size="10"> Registration Form </font></center></h1>
<hr>
<br/>
<form>
<table>
<tr>
<td><b>First Name:</b></td>
<td><input type="text" placeholder="Enter First Name" name=""></td>
</tr>
<tr>
<td><b>Last Name:</b></td>
<td><input type="text" placeholder="Enter Last Name" name=""></td>
</tr>
<tr>
<td><b>Age:</b></td>
<td><input type="text" placeholder="Age" name=""></td>
</tr>
<tr><td><b>Gender:</b></td>
<td><input type="radio" name="Gender">Male
<input type="radio" name="Gender">Female</td></tr>
<tr><td><b>Country:</b></td>
<td><input type="text" placeholder="Country" name=""></td></tr>
<tr><td><b>State/Province:</b></td>
<td><input type="text" placeholder="State/Province" name=""></td></tr>
<tr><td><b>City:</b></td>
<td><input type="text" placeholder="City" name=""></td></tr>
<tr><td><b>Email:</b></td>
<td><input type="text" placeholder="Enter Email" name=""></td></tr>
<tr><td><b>Phone No:</b></td>
<td><input type="text" placeholder="Enter Phone No" name=""></td></tr>
<tr><td><b>Password:</b></td>
<td><input type="password" placeholder="Password" name=""></td></tr>
<tr><td><b>Confirm Password:</b></td>
<td><input type="password" placeholder="Confirm Password"
name=""></td></tr>
<tr><td><input type="SUBMIT" value="SUBMIT" name=""></td></tr>
</table>
</form>
</center>
</body>
</html>

You might also like