Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
<meta name="description" content="Diseño de formularios">
    <meta charset="utf-8">
    <title>Ejemplo de formulario</title>
  </head>
  <body>
    <form autocomplete="on">
      <fieldset>
        <legend>Título</legend>
        <ul>
          <li class="grupo-control">
            <span class="etiqueta"><label for="name">Nombre</label></span>
            <span class="control"><input type="text" required name="name" id="name" placeholder="Nombre"></span>
          </li>
          <li class="grupo-control">
            <span class="etiqueta"><label for="lname">Apellidos</label></span>
            <span class="control"><input type="text" required name="lname" id="lname" placeholder="Apellidos"></span>
          </li>
          <li class="grupo-control">
            <span class="etiqueta"><label for="email">Email</label></span>
            <span class="control"><input type="email" required name="email" id="email" placeholder="Email"></span>
          </li>
        </ul>
        
        <input type="submit" value="Enviar" class="">
      </fieldset>
    </form>
  </body>
</html>
Output

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

Dismiss x
public
Bin info
pedroprietopro
0viewers