:\xampp\htdocs\PY-1-Probando-PHP\PY-1-CrearFormularr

ase enter the commit message for your changes. Lines starting

Esquema en HTML de mi primer formulario real
This commit is contained in:
2021-04-27 19:24:03 -03:00
commit 3c1f68efcc
3 changed files with 25 additions and 0 deletions

17
index.html Normal file
View File

@@ -0,0 +1,17 @@
<!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>

8
index.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
?>

0
styles.css Normal file
View File