Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="css/form.css"
- <title>Formulario</title>
- </head>
- <body>
- <form action="form.php" method="post">
- <ul>
- <li>
- <label for="nombre">Nombre:</label>
- <input type="text" id="nombre" name="nombre_usuario"/>
- </li>
- <li>
- <label for="email">Correo electrónico:</label>
- <input type="email" id="email" name="email_usuario"/>
- </li>
- <li>
- <label for="nacimiento">Fecha de nacimiento:</label>
- <input type="date" id="nacimiento" name="nacimiento_usuario"/>
- </li>
- <li>
- <label for="telefono">Teléfono:</label>
- <input type="tel" id="telefono" name="telefono_usuario"/>
- </li>
- <li>
- <label for="mensaje">Mensaje:</label>
- <textarea for="mensaje" name="mensaje_usuario"></textarea>
- </li>
- <li class="button">
- <button type="submit">Enviar mensaje</button>
- </li>
- </ul>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement