review: Create a form text input task4
Now, add a name
attribute to the input. Set its value to "user_name"
.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Forms</title>
</head>
<body>
<form action="index.html" method="post">
<input type="text" id="name" name="user_name">
</form>
</body>
</html>
Comments
Post a Comment