AlexKondov

HTML Fakebook

Jun 14th, 2014
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Fakebooks Login</title>
  5.         <link rel="stylesheet" type="text/css" href="fakebook-styles.css">
  6.     </head>
  7.     <body>
  8.         <header>
  9.             <img id="logo" src="fakebook-logo.jpg">
  10.         </header>
  11.         <div id="header">
  12.             <h1>Registration</h1>
  13.             <h2>It's safe and it will always be!</h2>
  14.         </div>
  15.  
  16.         <section id="form">
  17.             <fieldset>
  18.                 <legend>Non-Important Information</legend>
  19.                 <input type="text" placeholder="First Name" name="firstname" class="input"/>
  20.                 <input type="text" placeholder="Last Name" name="lastname" class="input"/>
  21.                 <br/>
  22.                 <input type="email" placeholder="email" name="email" class="input"/>
  23.                 <input type="number" placeholder="Phone Number" name="phonenum" class="input"/>
  24.                 <br/>
  25.                 <input type="password" placeholder="Password" name="pass" class="input"/>
  26.                 <input type="text" placeholder="Website" name="website" class="input"/>
  27.                 <br/>
  28.                 Birthday
  29.                 <br/>
  30.                 <input type="date" name="bday" id="bday"/>
  31.                 <br/>
  32.                 <input type="radio" value="female" id="female" name="gender"/>
  33.                 <label for="female">Female</label>
  34.                 <input type="radio" value="male" id="male" name="gender"/>
  35.                 <label for="male">Male</label>
  36.                 <input type="radio" value="other" id="other" name="gender"/>
  37.                 <label for="other">Other</label>
  38.                 <br><br><br><br>
  39.             </fieldset>
  40.  
  41.             <fieldset>
  42.                 <legend>Important Information *required</legend>
  43.                 <select class="input">
  44.                     <option selected="selected">Country</option>
  45.                     <option value="Bulgaria">Bulgaria</option>
  46.                     <option value="Romania">Romania</option>
  47.                     <option value="Macedonia">Macedonia</option>
  48.                     <option value="Other">Other</option>
  49.                 </select>
  50.                 <input type="text" placeholder="Village" name="village" class="input"/>
  51.                 <input type="text" placeholder="District" name="district" class="input"/>
  52.                 <br/>
  53.                 <input type="text" placeholder="Street" name="street" class="input"/>
  54.                 <input type="text" placeholder="Nr" name="num" class="details"/>
  55.                 <input type="text" placeholder="Floor" name="floor" class="details"/>
  56.                 <input type="text" placeholder="Ap Nr" name="ap nr" class="details"/>
  57.                 <br/>
  58.                 Door Color
  59.                 <br/>
  60.                 <input type="color" name="color" class="input"/>
  61.                 <input type="text" placeholder="Water Meter Number" name="meter-num" class="input"/>
  62.  
  63.                 <select class="input">
  64.                     <option selected="selected">Aunt's Panties Size</option>
  65.                     <option value="L">L</option>
  66.                     <option value="XL">XL</option>
  67.                     <option value="XXL">XXL</option>
  68.                     <option value="Unimaginable">Unimaginable</option>
  69.                 </select>
  70.                 <br/>
  71.                 More Personal Information
  72.                 <br/>
  73.                 <textarea placeholder="Give us more information!!!" id="textarea"></textarea>
  74.             </fieldset>
  75.  
  76.             <input type="reset" value="Clear" id="btn-clear"/>
  77.             <input type="submit" value="Register" id="btn-submit"/>
  78.         </section>
  79.     </body>
  80. </html>
Advertisement
Add Comment
Please, Sign In to add comment