Código HTML:
<html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Nuevo Empleado</title> </head> <body> <fieldset> <legend> Empleado </legend> <form action="" method="post"> <label for="ced"> Identificación <input type="text" name="id"> </label> <label for="ced"> Fecha <input type="date" name="fe" format=""> </label> <label> Primer Nombre <input type="text" name="pn"> </label> <label> Segundo Nombre <input type="text" name="sn"> </label> <label> Primer Apellido <input type="text" name="pa"> </label> <label> Segundo Apellido <input type="text" name="sa"> <br> </label> <label> Estado Civil <br> Soltero <input type="radio" name="Sol" value="sol"> Casado <input type="radio" name="cas" value="cas"> Unión Libre <input type="radio" name="ul" value="ul"> Viudo <input type="radio" name="viu" value="viu"> </label> </form> </fieldset> </body> </html>