HTML5: How to groups related elements in a form?
Solution:
HTML Code :
Explanation:
- The document starts with the doctype declaration specifying that it is an HTML5 document.
- Inside the <html> tags, the HTML document structure begins.
- The <head> section contains metadata about the document, including the character encoding specified using the meta tag and the title of the document.
- The <body> section is where the visible content of the webpage resides.
- A <form> element is used to create a form.
- Inside the form, a <fieldset> element is used to group related form elements together.
- Within the fieldset, there are input fields for Name, Email, and Place.
- Each input field is defined with an <input> element with its respective type attribute set to "text" and size attribute set to control the width of the input field.
- <br> tags are used for line breaks to create space between the form elements.
- The HTML document ends with the closing </html> tag.
Live Demo:
See the solution in the browser
Supported browser
![]() |
![]() |
![]() |
![]() |
![]() |
Yes | Yes | Yes | Yes | Yes |
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.