Explain the 2 elements that html odes contain in a form
Answers
Answer:
An HTML form element is any element that may be used inside of a <form> tag. These elements, along with the unique and standard attributes, give a form its structure as well as let it know what to do with the data input by users
Answer:
HTML Elements
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:<tagname>Content goes here...</tagname>
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:<tagname>Content goes here...</tagname>The HTML element is everything from the start tag to the end tag:
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:<tagname>Content goes here...</tagname>The HTML element is everything from the start tag to the end tag:<p>My first paragraph.</p>
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:<tagname>Content goes here...</tagname>The HTML element is everything from the start tag to the end tag:<p>My first paragraph.</p>Start tag Element content End tag
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:<tagname>Content goes here...</tagname>The HTML element is everything from the start tag to the end tag:<p>My first paragraph.</p>Start tag Element content End tag<h1> My First Heading </h1>
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:<tagname>Content goes here...</tagname>The HTML element is everything from the start tag to the end tag:<p>My first paragraph.</p>Start tag Element content End tag<h1> My First Heading </h1><p> My first paragraph. </p>
HTML ElementsAn HTML element usually consists of a start tag and an end tag, with the content inserted in between:<tagname>Content goes here...</tagname>The HTML element is everything from the start tag to the end tag:<p>My first paragraph.</p>Start tag Element content End tag<h1> My First Heading </h1><p> My first paragraph. </p><br>