ashgawlik.com/Shortcuts/form.html
2024-09-11 15:24:00 +01:00

15 lines
379 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form name="myForm" action="actionpage.php" onsubmit="return validateForm()" method="post">
Name: <input type="text" name="fName">
<input type="submit">
</form>>
</body>
</html>