Advertisement
Turisas

Imagen y formulario en columnas HTML

Jun 1st, 2015
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. <table>
  2. <tr>
  3. <td>
  4. <img alt="ATRIBUTO ALT DE LA IMAGEN" border="0" src="http://1.bp.blogspot.com/-qgjn_p4ThLI/VBhLh2-zi-I/AAAAAAAANk0/JdRKmdvs-9M/s1600/logo.png" height="90" title="ATRIBUTO TITLE DE LA IMAGEN" width="251">
  5. </td>
  6. <td>
  7. <FORM action="http://tublog.com/" method="post">
  8.     <P>
  9.     <LABEL for="nombre">Nombre: </LABEL>
  10.               <INPUT type="text" id="nombre"><BR>
  11.     <LABEL for="apellido">Apellido: </LABEL>
  12.               <INPUT type="text" id="apellido"><BR>
  13.     <LABEL for="email">email: </LABEL>
  14.               <INPUT type="text" id="email"><BR>
  15.     <INPUT type="radio" name="sexo" value="Varón"> Varón<BR>
  16.     <INPUT type="radio" name="sexo" value="Mujer"> Mujer<BR>
  17.     <INPUT type="submit" value="Enviar"> <INPUT type="reset">
  18.     </P>
  19.  </FORM>
  20. </td>
  21. </tr>
  22. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement