Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Convert JSON to CSV!</title>
  8. </head>
  9. <script src="app.js"></script>
  10. <body>
  11.     <h1>Convert JSON to CSV</h1>
  12.     <div class="submit-div">
  13.     <form onsubmit="onSubmitForm()">
  14.         <input id="input-data" class="input-bar" type="search" placeholder="JSON data">
  15.         <input type="submit" value="Submit">
  16.     </form>
  17.     </div>
  18.  
  19.     <div class="response-container">
  20.         <span id="converted">Converted data:</span>
  21.     </div>
  22. </body>
  23.  
  24. <style>
  25.     .response-container {
  26.         width: 500px;
  27.         height: 100px;
  28.         margin-top: 20px;
  29.         padding: 20px;
  30.         border: 1px solid black;
  31.     }
  32.  
  33.     .input-bar {
  34.         height: 100px;
  35.         width: 500px;
  36.     }
  37. </style>
  38.  
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement