abdul rehman html form

2
Html Form <!DOCTYPE html> <html> <head> <title>Text Input Control</title> </head><h1><b><centre>Registration Form</h1></centre> <body> <form > First name: <input type="text" name="first_name" /> <br> Last name: <input type="text" name="last_name" /> <br> User ID : <input type="text" name="user_id" /> <br> Password: <input type="password" name="password" /><br> Gender<br> <input type="radio" name="sex" value="male">Male <input type="radio" name="sex" value="female">Female<br> Date of Birth *: <input type="date of birth" name="dob" /><br> Email *: <input type="email" name="email" /><br> Telephone: <input type="telephone" name="tel" /><br> Address *: <input type="address" name="add" /><br> <input type ="Submit" name="sub" /> </form> </body>

Upload: awais-imran

Post on 13-Apr-2016

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Abdul Rehman HTML Form

Html Form

<!DOCTYPE html>

<html>

<head>

<title>Text Input Control</title>

</head><h1><b><centre>Registration Form</h1></centre>

<body>

<form >

First name: <input type="text" name="first_name" />

<br>

Last name: <input type="text" name="last_name" />

<br>

User ID : <input type="text" name="user_id" />

<br>

Password: <input type="password" name="password" /><br>

Gender<br>

<input type="radio" name="sex" value="male">Male

<input type="radio" name="sex" value="female">Female<br>

Date of Birth *: <input type="date of birth" name="dob" /><br>

Email *: <input type="email" name="email" /><br>

Telephone: <input type="telephone" name="tel" /><br>

Address *: <input type="address" name="add" /><br>

<input type ="Submit" name="sub" />

</form>

</body>

</html>

Page 2: Abdul Rehman HTML Form

Html Form