Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Negative Media Web Search</title>
  6.  
  7. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  8. <script src="script.js"></script>
  9. <link rel="stylesheet" href="style.css">
  10. </head>
  11. <body>
  12.  
  13. <div class="grid-container">
  14.     <h1>Negative Media Search</h1>
  15.  
  16.     <form class="material-form">
  17.         <h3>Please fill the client's details</h3>
  18.         <label class="pure-material-textfield-outlined">
  19.             <input id="name" placeholder=" " required>
  20.             <span>Name</span>
  21.         </label>
  22.  
  23.         <label class="pure-material-textfield-outlined">
  24.             <input id="email" placeholder=" " type="email">
  25.             <span>E-mail</span>
  26.         </label>
  27.  
  28.         <label class="pure-material-textfield-outlined">
  29.             <input id="phone" placeholder=" " type="text">
  30.             <span>Phone</span>
  31.         </label>
  32.  
  33.         <label class="pure-material-textfield-outlined">
  34.             <input id="city" placeholder=" " type="text">
  35.             <span>City</span>
  36.         </label>
  37.  
  38.         <label class="pure-material-textfield-outlined">
  39.             <input id="date-of-birth" placeholder=" " type="text">
  40.             <span>Date of Birth</span>
  41.         </label>
  42.  
  43.         <button class="pure-material-button-contained">Convert to PDF</button>
  44.  
  45.         <div class="resources">
  46.             <a href="#">Download Resources</a>
  47.         </div>
  48.  
  49.         <div class="status">
  50.             <h4>PDF created successfully.</h4>
  51.         </div>
  52.  
  53.         <pre class="raw-data">No Data</pre>
  54.     </form>
  55. </div>
  56.  
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement