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

Htmlform 1

Dbdjdjdkdkdkjd

Uploaded by

Shabna N
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)
11 views2 pages

Htmlform 1

Dbdjdjdkdkdkjd

Uploaded by

Shabna N
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/ 2

Index.

htm
<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-


scale=1.0">

<title>Registration Form</title>

</head>

<body>

<h2>Registration Form</h2>

<form action="thanku.htm" method="post">

<label for="fname">First Name:</label><br>

<input type="text" id="fname" name="fname"


required><br><br>

<label for="lname">Last Name:</label><br>

<input type="text" id="lname" name="lname"


required><br><br>

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

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


required><br><br>

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

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


required><br><br>

<label for="phone">Phone Number:</label><br>

<input type="tel" id="phone" name="phone"><br><br>

<input type="submit" value="Register">

</form>

</body>

</html>

thanku.htm
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You</title>
</head>
<body>
<h2>Thank You for Registering!</h2>
<p>Your registration has been successfully submitted.</p>
</body>
</html>

You might also like