Inline Metadata
Time and Address Metadata
Human Text With Machine Values
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
Visuals: captured from real browser rendering
<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>
Create the event article.

The article groups the event details as one self-contained unit. Add the event heading.

The heading names the event. Add a machine-readable opening time.

The datetime attribute stores the precise value while the text stays readable. Add the event contact location.

The address element marks contact information for the article. Complete the event card.

Closing the article finalizes the event metadata group.
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.