En este artículo, aprenderemos cómo crear un formulario en una página web usando la etiqueta <form> . Esta etiqueta se utiliza para crear un formulario para la entrada del usuario. También hay muchos elementos que se utilizan dentro de la etiqueta de formulario .
Sintaxis:
<form> Form Content... </form>
Ejemplo: El siguiente fragmento de código demuestra la creación simple de un formulario.
<!DOCTYPE html> <html> <head> <title> HTML5: How to define an HTML form for user input? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML5: How to define an HTML form for user input? </h2> <form action="#"> First name: <input type="text" placeholder="First Name" value=""> <br><br> Last name: <input type="text" placeholder="Last Name" value=""> <br><br> <input type="submit" value="Submit"> </form> </body> </html>
Producción :
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA