Action, Method, Name in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Action Method Name</title>
</head>
<body>
<h1>HTML FORM</h1>
<form action="thankyouPage.html" method="GET">
<label for="username">Username : </label>
<input type="text" id="username" name="username"><br><br>
<label for="password">Password : </label>
<input type="text" id="password" name="password"><br><br>
<label for="email">Email : </label>
<input type="text" id="email" name="email"><br><br>
<input type="submit" value="sign in">
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>Thank YouPage</head>
<body>
<h1>Thank YouPage</h1>
</body>
</html>
Comments
Post a Comment