Formulario HTML5

<html lang="en"> <head> <meta charset="UTF-8" /> <title>Formularios en HTML5</title> </head> <body> <form> Nombre: <input type="text"> <br> Correo: <input type="email"> <br> Url: <input type="url"> <br /> Buscar: <input type="search" /> <br /> Número telefonico: <input type="tel" /> <br /> Edad: <input type="range" /> <br /> Fecha de Nacimiento: <input type="date" /> <br /> Mes: <input type="month" /> <br /> Semana: <input type="week" /> <br /> Color Favorito: <input type="color" /> <br /> <input type="submit" /> </form> </body> </html>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.