Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Ejemplo de formulario</title>
  </head>
  <body>
    <form>
      <fieldset>
        <legend>Título</legend>
        <ul>
          <li>
            <span class="etiqueta"><label for="nombre">Nombre</label></span>
            <span class="control"><input type="text" name="nombre" id="nombre" placeholder="Nombre..."></span>
          </li>
          <li>
            <span class="etiqueta"><label for="ape1">Apellido 1</label></span>
            <span class="control"><input type="text" name="ape1" id="ape1" placeholder="Apellido 1..."></span>
          </li>
          <li>
            <span class="etiqueta"><label for="ape2">Apellido 2</label></span>
            <span class="control"><input type="text" name="ape2" id="ape2" placeholder="Apellido 2..."></span>
          </li>
        </ul>
      </fieldset>
    </form>
  </body>
</html>
 
form ul, form ol {
  list-style: none;
  padding: 0;
}
label {
  display: inline-block;
  width: 7em;
}
input {
  display: inline-block;
  width: 9em;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x