Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam 1D0-61B topic 1 question 5 discussion

Actual exam question from CIW's 1D0-61B
Question #: 5
Topic #: 1
[All 1D0-61B Questions]

You can use the HTML <input>, <select> and <text area> tags to create form fields in a Web page by placing them between the <form> /form> container tags.
Which attribute is used with the <input> element to designate the fields that will appear in the form?

  • A. The type attribute
  • B. The name attribute
  • C. The value attribute
  • D. The action attribute
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
myLord
1 year ago
The "name" attribute is used with the <input> element to designate the fields that will appear in the form. The "name" attribute is used to provide a name for the input element, which can then be used to reference the input field when the form is submitted. When the user submits the form, the name/value pairs of each form field are sent to the server as a set of variables that can be processed by a server-side script. For example, the following HTML code creates an input field for the user's name: <form action="submit-form.php" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="user_name"> </form>
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...