review: Create a form text input task2
Challenge Task 2 of 4
Inside the form element, add an input with the type
attribute set to the value "text"
. Don't add any other attributes yet.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Forms</title>
</head>
<body>
<form action="index.html" method="post">
<input type="text">
</form>
</body>
</html>
Comments
Post a Comment