Advertisement
Guest User

Untitled

a guest
Sep 15th, 2016
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.50 KB | None | 0 0
  1.  <div id="section1">
  2.         <form method="post" action="form.php">
  3.           <fieldset>
  4.             <legend>None Important Information</legend>
  5.             <input type="text" id="fn" required="true" placeholder="First Name"/>
  6.             <input type="text" id="ln" required="true" placeholder="Last Name"/>
  7.             <input type="email" id="email"required="true" pattern="[a-zA-Z0-9_]{3,}@[a-zA-Z0-9_]{3,}.[a-zA-Z0-9]{2,4}" placeholder="Your Email"/>
  8.             <input type="tel" id="phone-number" required="true" pattern="\-[0-9]{3}\-[0-9]{3}\-[0-9]{2}\-[0-9]{2}\-[0-9]{2}"  placeholder="Phone Number"/>
  9.             <input type="password" id="password" required="true" placeholder="Your Password"/>
  10.             <input type="website" id="site" required="true" placeholder="Website"/>
  11.             <label for="datetime">Birthday</label>
  12.             <br><input type="datetime" id="datetime" placeholder="05/09/2014 01:58 PM"/></br>
  13.           <div id="radio">
  14.             <input type="radio"  class="radio" name="gender" id="Female" />
  15.             <label for="Female">Female</label>
  16.             <input type="radio" class="radio" name="gender" id="Male" />
  17.             <label for="Male">Male</label>
  18.             <input type="radio" class="radio" name="gender" id="Other" />
  19.             <label for="Other">Other</label>
  20.           </div>
  21.         </fieldset>
  22.         </form>
  23.         </div> 
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement