Advertisement
Guest User

form

a guest
Mar 5th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.31 KB | None | 0 0
  1.         <form id="contact-form" name="contact-form" method="post" action="form-processing.php">
  2.     <p>
  3.     <label>
  4.               <h3>
  5.               Full Name:
  6.               </h3>
  7.               <input name="FName" type="text" id="FName" size="48" required placeholder="Ex. Erik Eriksson"/>
  8.             </label>
  9.             <div class="Block-red"></div>
  10.     </p>
  11.  
  12.     <p>
  13.     <label>
  14.               <h3>
  15.               Email:
  16.               </h3>
  17.               <input name="Email" type="text" id="Email" size="48" required placeholder="Ex. Erik Eriksson"/>
  18.             </label>
  19.             <div class="Block-green"></div>
  20.     </p>
  21.    
  22.     <p>
  23.     <label>
  24.               <h3>
  25.               Question:
  26.               </h3>
  27.               <textarea name="Question" id="Question" cols="50" rows="7" required placeholder="Tell us a little about you self and project Decription"></textarea>
  28.               <div class="Block-blue"></div>
  29.             </label>
  30.     </p>
  31.     <p>
  32.               <label>
  33.         <button type="submit" class="submit-button" id="button1" value="send"><span class="icon-Send"></span>Submit</button>
  34.         </label>
  35.         <label>
  36.         <button type="reset" class="reset-button" id="button2" value="Clear Text"><span class="icon-X"></span>Clear</button>
  37.       </label>
  38.             </p>
  39.   </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement