Diferencia entre revisiones de «Usuario:ManuelRomero/JavaScript/jquery/solucionEJ1»
De WikiEducator
< Usuario:ManuelRomero | JavaScript | jquery
(Página creada con «<font size=5 color=red>VOLVER</font> <source lang=html5> <!doctype html> <html> <head> <meta charset="UTF-8"> <title>Un...») |
|||
Línea 1: | Línea 1: | ||
− | [[Usuario:ManuelRomero/JavaScript/jquery/|<font size=5 color=red>VOLVER</font>]] | + | [[Usuario:ManuelRomero/JavaScript/jquery/validate|<font size=5 color=red>VOLVER</font>]] |
<source lang=html5> | <source lang=html5> | ||
<!doctype html> | <!doctype html> |
Última revisión de 00:58 15 abr 2016
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Untitled Document</title> <!--Estilos para cumplir con enunciado: --> <style> .important{color:red; font-weight:bold;} label{display:inline-block; width:200px;} input[type="submit"]{margin-left:200px;} </style> </head> <body> <form id="formulario" action="accion.php" method="post"> <div> <label for="nombre">Nombre: <span class="important">*</span> </label> <input type="text" id="nombre" /> </div> <div> <label for="email">E-mail: <span class="important">*</span> </label> <input type="email" id="email" /> </div> <div> <label for="url">Url:</label> <input type="url" id="url" /> </div> <div> <label for="comentarios">Comentarios:</label> <textarea id="comentarios"></textarea> </div> <div> <input type="submit" value="Enviar" /> </div> </form> </body> </html>