In Html form Tag is used to create or design a simple form under body element. It has a certain facility to put data with an interactive layout. It has buttons and several fields which has fields such as input text box Input Password box, input radio button select box message text area, and so on. Labels tag are names of form to be designed in the form of the tag.
<label>Message</label> <textarea rows=”10″ cols=”60″>type your message</textarea> <br><br> </form> </body> </html>
Form is designed under <body>…</body> tag with <form>…</form> tag
Labels are the name of the form to be desplay in page .It is to be under <label>…</label>tag
Input type is the type of data in the form to be interacted. such as
<input type=”text”> which is used for name or any such similar field.
<input type=”password”>
it is used for password to be given by user.
<input type=”radio”> it us used for radio button to be clicked by the user
<input type=”checkbox”>
checkbox is given to select the box from the list .
<br> tag is given to give break between lines so each form field shows on different line.
name=”” is given specify the name of the input type and id to make it unique.
Iframe tag
<iframe> tag is used under <body> tag to show the other website view in page or same website page view.he <iframe> tag specifies an inline frame. An inline frame is used to embed another document within the current HTML document.
The iframe in HTML stands for Inline Frame. The ” iframe ” tag defines a rectangular region within the document in which the browser can display a separate document, including scrollbars and borders. An inline frame is used to embed another document within the current HTML document.