Advertisement
KeeJayBe

form

Aug 19th, 2020 (edited)
1,204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.03 KB | None | 0 0
  1. <<<<<HTML>>>>>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4.  
  5. <head>
  6.   <meta charset="UTF-8" />
  7.  
  8.  
  9.   <link rel="stylesheet" href="style.css" />
  10. </head>
  11. <body>
  12.  
  13. <form action="/verwerk.php">
  14.   <legend> Formulorum ipsum </legend>
  15.     <div class="row">
  16.       <label for="ipsum">ipsum <span> *</span></label>
  17.       <div class="col2">
  18.         <input name="ipsum" type="text" required />
  19.       </div>
  20.     </div>
  21.  
  22.       <div class="row">
  23.         <label for="pais">pais<span>*</span></label>
  24.         <div class="col2">
  25.           <select name="selectorum..." id="pais" req>
  26.             <option value="Selectorum...">Selectorum...</option>
  27.             <option value="aa">aa</option>
  28.             <option value="bb">bb</option>
  29.             <option value="cc">cc</option>
  30.           </select>
  31.         </div>
  32.       </div>
  33.  
  34.       <div class="row"> genderum &nbsp;
  35.         <div class="col2">
  36.           <input  name="gender" type="radio" value="mela" /> mela
  37.           <input name="gender" type="radio" value="Femelle" /> Femelle  
  38.         </div>
  39.       </div>
  40.          
  41.     <div class="row">
  42.       <label for="Secretum">Secretum&nbsp;</label>
  43.       <div class="col2">
  44.         <input style="font-size: 16px;" name="Secretum" type="password" />&nbsp;
  45.       </div>
  46.     </div>
  47.  
  48.     <div class="row">
  49.       <label for="Secretum bis">Secretum bis&nbsp;</label>
  50.       <div class="col2">
  51.         <input style="font-size: 16px;" name="Secretum bis" type="password"  />&nbsp;
  52.       </div>
  53.     </div>
  54.       <br />
  55.         <button type="submit" value="SEND">SEND</button>  <button type="submit" value="RESET">RESET</button>
  56.     </form>
  57.   </body>
  58.  
  59.  
  60.  
  61. <<<<<CSS>>>>>
  62. form{
  63.     width: 600px;
  64.     border: 1px solid;
  65.     border-radius: 25px;
  66.     margin: auto;
  67.     overflow: hidden;
  68. }
  69. .row{
  70.     display: flex;
  71.     flex-direction: row;
  72.     justify-content: space-between;
  73. }
  74. .col2{
  75.     width: 300px;
  76. }
  77. span{
  78.     color:red;
  79. }
  80. legend {
  81.     display: block;
  82.     padding-left: 2px;
  83.     padding-right: 2px;
  84.     border: none;
  85.     color: red;
  86.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement