review: Create a form textarea task1(don't want to continue, too much repeat works with input)
Challenge Task 1 of 5
Create a form element with an action
attribute set to "index.html"
and the method
attribute set to "post"
.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Forms</title>
</head>
<body>
<form action="index.html" method="post">
</form>
</body>
</html>
*a little different with input text is: name="user_comment"
Comments
Post a Comment