Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>ScatterPlot</title>
  5.     <meta charset="utf-8">
  6.     <link href="https://fonts.googleapis.com/css?family=Roboto&display=swap&subset=cyrillic-ext" rel="stylesheet">
  7.  
  8. </head>
  9. <body>
  10.  
  11. <div>
  12.     <h2>
  13.         Scatter Plot
  14.     </h2>
  15.     <form id="form" action= "draw.php" method = "post" target="_blank">
  16.  
  17.     Ширина: <input type="number" name="width"><br>
  18.     Высота: <input type="number" name="height"><br><br>
  19.     Выберите файл загрузки: <br>
  20.     <input type="file" name="fileToUpload" id="fileToUpload">
  21.     <input type="submit" value="Загрузить файл" name="submit">
  22.  
  23.     </form>
  24. </div>
  25.  
  26.  <style type="text/css">
  27.  
  28.     h2 {
  29.         margin-bottom: 20px;
  30.         text-align: center;
  31.         font-size: 40px
  32.     }
  33.  
  34.     div:nth-child(1) {
  35.         padding: 10px 40px;
  36.         text-align: center;
  37.  
  38.         margin: 30px auto;
  39.         width: 300px;
  40.         height: 330px;
  41.         font-family: 'Roboto';
  42.  
  43.         border: thin solid grey;
  44.         border-radius: 10px;
  45.     }
  46.  
  47.     input {
  48.         margin: 10px;
  49.     }
  50.  
  51.     input[type="number"] {
  52.         border: 1px solid #75aaff;
  53.         border-radius: 4px;
  54.         height: 2em;
  55.         width: 150px
  56.     }
  57.  
  58.     input:nth-child(3) {
  59.         margin-top: 20px;
  60.     }
  61.  
  62.     input[type="submit"] {
  63.         float: right;
  64.         border: 1px solid #75aaff;
  65.         background-color: #75aaff;
  66.         border-radius: 4px;
  67.         height: 2.5em;
  68.         width: 110px;
  69.         color: white;
  70.     }
  71. </style>
  72. </body>
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement