You are on page 1of 1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Registration Form</title> </head> <body> <center> <h1>Registration Form</h1> <form> <label>Full name:</label> <input type="text" name="full_name" placeholder="Enter Your Name" required autofocus /> <br /></br> <label>Password:</label> <input type="password" name="pass" placeholder="Enter Your Password" required autofocus /> <br /></br> <label>Email address:</label> <input type="email" name="email_addr" placeholder="Your Email Address" required> <br /></br> <label>Repeat email address:</label> <input type="email" name="email_addr_repeat" placeholder="Confirm Email Address" required> <br /></br> <label>Phone Number:</label> <input type="tel" name="tel_number" placeholder="Phone Number" required /> <br /></br> <label>Date of Birth</label> <input type="date" name="DOB" required> <br /></br> <label>Gender</label> <select title="My Gender" name="Gender" aria-required="true"> <option value selected>Select One </option> <option title="Male" value="m">Male</option> <option title="Female" value="f">Female</option> </select> <br /></br> <label>Language</label> <select title="Language" name="Lang" aria-required="true"> <option value selected>Select One </option> <option title="English" value="e">English</option> <option title="Hindi" value="h"> </option> <option title="Gujarati" value="g"> </option> </select> <br /></br> <input type="submit" value="Submit" /> </form> </center> </body> </html>

C:\Users\SAGAR\Documents\Bluetooth Exchange Folder\WAD Assignments 2 to 7\HTML Plain\Plain HTML.html: 1/1

You might also like