Advertisement
Vengadora

html.html

Oct 27th, 2015
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.22 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.   <head>
  5.     <meta charset="utf-8" />
  6.     <title>formulario de HTML</title>
  7.     <style type="text/css" media="screen">
  8.       input {
  9.       width : 50%;
  10.       margin : 10px;
  11.       }
  12.       body {
  13.       padding : 50px;
  14.       font-family : sans;
  15.       }
  16.     </style>
  17.   </head>
  18.  
  19.   <body>
  20.     <h1>Creando un nuevo item...</h1>
  21.     <form method="post" id="el-formulario" action="php.php" role="form">
  22.       <div class="form-group">
  23.         <label for="Nombre"> Nombre </label>
  24.         <input type="text" class="form-control" name="nombre"
  25.               placeholder="nombre del item" /> <br />
  26.  
  27.         <label for="valor_venta"> Valor de venta (oro) </label>
  28.         <input type="text" class="form-control" name="valor_venta"
  29.               placeholder="Cuánto oro consigue el jugador al vender éste ítem?" /> <br />
  30.  
  31.         <label for="valor_compra"> Valor de compra (oro) </label>
  32.         <input type="text" class="form-control" name="valor_compra"
  33.               placeholder="Cuánto oro gasta el jugador al comprar éste ítem?" /> <br />
  34.  
  35.         <button type="submit" class="btn btn-primary" action="submit"> Agregar! </button>
  36.  
  37.       </div>
  38.     </form>
  39.  
  40.   </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement