Disclosure Boxes: `
` and `` ============================================= You can create a disclosure widget, allowing some content to be hidden by closing the widget, by using [the `
` tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details). The "pointer" cursor style is used when you hover over one:
This is the summary

And here are the details:

  1. Cash on hand: $500.00
  2. Current invoice: $75.30
  3. Due date: 5/6/19
Adding the `open` attribute to the `
` tag makes it be open by default:
This is the summary

And here are the details:

  1. Cash on hand: $500.00
  2. Current invoice: $75.30
  3. Due date: 5/6/19
A `
` with no `` just gets the word "Details" as its summary:

And here are the details:

  1. Cash on hand: $500.00
  2. Current invoice: $75.30
  3. Due date: 5/6/19