mirror of
https://github.com/FranP-code/Frist-actual-form.git
synced 2025-10-12 23:53:02 +00:00
ase enter the commit message for your changes. Lines starting Esquema en HTML de mi primer formulario real
17 lines
559 B
HTML
17 lines
559 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Formulario</title>
|
|
</head>
|
|
<body>
|
|
<form action="index.php" method="POST">
|
|
<input type="text" placeholder="Name" name="name">
|
|
<input type="email" placeholder="E-mail" name="electronic-mail">
|
|
<textarea placeholder="Message" name=""></textarea>
|
|
<input type="submit" placeholder="Enviar">
|
|
</form>
|
|
</body>
|
|
</html> |