An event card uses time and address so the visible text stays readable while the document carries date and contact semantics.

Program

Some HTML elements keep visible text ordinary but add machine-readable meaning. Time can carry a datetime value, and address marks contact information.

time_address_meta.html
<article>
  <h1>Workshop</h1>
  <p>Opens <time datetime="2026-07-14T09:00">July 14, 9:00</time>.</p>
  <address>Egtry Lab, 12 Maker Lane</address>
</article>
time A time element can pair human text with a machine-readable datetime attribute.
address An address element marks contact information for the nearest article or page.