This element is expected to establish a new block formatting context. If the FIELDSET element has a child that matches the conditions in the list below, then the first such child is the FIELDSET element's rendered legend.
<form action="#">
<fieldset>
<legend>This is the LEGEND element</legend>
This is the FIELDSET element
</fieldset>
</form>
This element represents a caption or legend for the rest of the contents of the FIGCAPTION element's parent FIGURE element, if any.
<figcaption>This is the FIGCAPTION element</figcaption>
This element represents some flow content, optionally with a caption, that is self-contained and is typically referenced as a single unit from the main flow of the document.
<figure class="class-name" id="figure-id-name">
<img class="u-image" src="../assets/img/100x100.png" alt="">
<figcaption>This is the FIGCAPTION element</figcaption>
</figure>
This element represents the "footer" of a document or section of a document. The footer element typically contains metadata about its enclosing section, such as who wrote it, links to related documents, copyright data, etc. Contact information for the section given in a footer should be marked up using the address element.
<footer class="class-name" id="footer-id-name" role="contentinfo">
This is a FOOTER element
</footer>
This element represents a collection of form-associated elements, some of which can represent editable values that can be submitted to a server for processing.
<form class="class-name" id="form-id-name" action="#">
This is the FORM element
</form>