Siddharth2603

Untitled

Jan 4th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.26 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang = "en">
  3.     <head>
  4.         <title>Amazon E-mailer</title>
  5.      <!-- Compiled and minified CSS -->
  6.     <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
  7.  
  8.     <!-- Compiled and minified JavaScript -->
  9.     <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
  10.            
  11.     </head>
  12.     <body>
  13.         <div class="row">
  14.     <form class="col s12" action = "" method = "POST">
  15.       <div class="row">
  16.           <input name = "url" placeholder="Enter the URL" id="url" type="text" class="validate">
  17.           <label for="url">URL</label>
  18.        
  19.         </div>
  20.       <div class="row">
  21.           <input name = "email" placeholder="Enter the email"  id="email" type="email" class="validate">
  22.           <label for="email">E-mail</label>
  23.         </div>
  24.         <div class="row">
  25.             <input name = "price" placeholder ="Enter your wanted price"  id="price" type="int" class="validate">
  26.             <label for="price">PRICE</label>
  27.           </div>
  28.         <button class="btn waves-effect waves-light" type="submit">Submit
  29.             <i class="material-icons right"></i>
  30.         </button>
  31.     </form>
  32.   </div>
  33.     </body>
  34. </html>
Add Comment
Please, Sign In to add comment