Simplex

HTML elements

D elements


datalist

This element represents a set of option elements that represent predefined options for other controls. The contents of the element represents fallback content for legacy user agents, intermixed with option elements that represent the predefined options. In the rendering, the datalist element represents nothing and it, along with its children, should be hidden.

<div class="class-name" id="datalist-id-name">
  <label>Your favourite fruit:
  <input type="text" name="fruit" list="fruits">
    <datalist id="fruits">
      <option value="" selected>Choose an option</option>
      <option value="Blackberry">Blackberry</option>
      <option value="Blackcurrant">Blackcurrant</option>
      <option value="Blueberry">Blueberry</option>
    </datalist>
  </label>
</div>

dd

This element represents the description, definition, or value, part of a term-description group in a description list (dl element).

N/A
<dd>DD element - definition description</dd>

del

This element represents a removal from the document. Thedel elements should not cross implied paragraph boundaries

This is the DEL element in a sentence.
<del datetime="2016-12-17T01:25-07:00">DEL element</del>

details

This element represents a disclosure widget from which the user can obtain additional information or controls. However, the details element is not appropriate for footnotes.

This is the SUMMARY element

This is some DETAILS element content

<details class="class-name" id="details-id-name">
  <summary>This is the SUMMARY element</summary>
  <p>This is some DETAILS element content</p>
</details>

dfn

This element represents the defining instance of a term. The paragraph, description list group, or section that is the nearest ancestor of the dfn element must also contain the definition(s) for the term given by the dfn element.

While they're essential reading material for our job, the W3C specifications are not exactly George R. R. Martin-level reading material.
<dfn><abbr title="World Wide Web Consortium">W3C</abbr></dfn>

div

This element has no special meaning at all. It represents its children. It can be used with the class, lang, and title attributes to mark up semantics common to a group of consecutive elements.

This is a DIV element
<div class="class-name" id="div-id-name">
  This is a DIV element
</div>

dl

This elements represents a description list consisting of zero or more name-value groups. Each group must consist of one or more names (dt elements) each followed by one or more values (dd elements). Name-value groups may be terms and definitions, metadata topics and values, or any other groups of name-value data. The values within a group are alternatives; multiple paragraphs forming part of the same value must all be given within the same dd element.

DT element - definition term
DD element - definition description
<dl class="class-name" id="dl-id-name">
  <dt>DT element - definition term</dt>
  <dd>DD element - definition description</dd>
</dl>

dt

This element represents the term, or name, part of a term-description group in a description list (dl element).

N/A
<dt>DT element - definition term</dt>