Vous êtes sur la page 1sur 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

<!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>Form with CSS</title> <link rel="stylesheet" href="Style.css" /> <script type="text/javascript" src="Validation.js"></script> </head> <body style="background-color:#FFFFFF"> <center><h1>Registration Form</h1></center> <div id="container"> <form name="Registration" id="Registration"> <label>Full name:</label> <input type="text" id="full_name" name="full_name" placeholder="Full Name" required> <label>Password:</label> <input type="password" name="pass" placeholder="Enter Your Password" required autofocus /> <label>Email address:</label> <input type="email" id="email_addr" name="email_id" placeholder="E-Mail ID" required> <label>Repeat email address:</label> <input type="email" id="email_addr_repeat" name="email_id_repeat" placeholder="Confirm E-mail ID" required onchange="check(thi s)" > <label>Phone Number:</label> <input type="tel" id="phone_Number" name="phone_number" placeholder="Phone Number Here" required /> <label>Date of Birth</label> <input type="date" id="DOB" name="Date_Of_Birth" required> <label>Gender</label> <select title="My Gender" name="Gender" aria-required= "true"> <option title="Male" value="m">Male</option> <option title="Female" value="f">Female</option> </select> <label>Language</label> <select title="Language" name="Lang" aria-required="true"> <option title="English" value="e">English</option> <option title="Hindi" value="h"> </option> <option title="Gujarati" value="g"> </option> </select> <input type="submit" value="Register" onclick="check(this.form.email_id_repeat)" /> </form> </div> </body> </html>

C:\Users\SAGAR\Documents\Bluetooth Exchange Folder\WAD Assignments 2 to 7\HTML CSS and Javascript\Form_CSS_JavaScript.html: 1/1

Vous aimerez peut-être aussi