Simplex

HTML elements

F elements


fieldset

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.

N/A
<form action="#">
  <fieldset>
    <legend>This is the LEGEND element</legend>
    This is the FIELDSET element
  </fieldset>
</form>

figcaption

This element represents a caption or legend for the rest of the contents of the FIGCAPTION element's parent FIGURE element, if any.

N/A
<figcaption>This is the FIGCAPTION element</figcaption>

figure

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.

This is the FIGCAPTION element
<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>

footer

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.

This is a FOOTER element
<footer class="class-name" id="footer-id-name" role="contentinfo">
  This is a FOOTER element
</footer>

form

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.

This is the FORM element
<form class="class-name" id="form-id-name" action="#">
  This is the FORM element
</form>