review: Create a form text input task3
Challenge Task 3 of 4
On the input created in the last step, add an id
attribute with the value "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">
</form>
</body>
</html>
Comments
Post a Comment