Search notes:

HTML attributes: item*

An HTML element can be annotated with the (boolean) attribute itemscope which indicates that the content of this element and its child elements is about a particular item:
<div itemscope …>
  …
</div>
itemscope by itself is rather meaningles because it does not specify what the conent is about. Therefore, itemscope must be combined with either itemtype or itemref:
<div itemscope itemtype="https://schema.org/Person">
  …
</div>
The value of itemtype defines a vocabulary about that type. Such a vocabulary basically consists of key-value pairs. The value of the child element's itemprop attribute corresponds to a key, the content of the child element to the value:
<div itemscope itemtype="https://schema.org/Person">
  <span itemprop="name">John Doe</span>
  …
</div>

Nesting

Its possible to next itemscopes/itemtypes:
<div itemscope itemtype="https://schema.org/Person">
  <span itemprop="name">John Doe</span>
  <span itemprop="composer" itemtype itemtype="https://schema.org/MusicComposition">Programming and Fugue in C-Sharp</span>
  …
</div>

itemprop=url

If the data about a given itemscope is found at a specific URL, the value of itemprop should be set to url:
<div itemscope itemtype="https://schema.org/Person">
  <a href="John-Doe.html" itemprop="url">John Doe</span>
</div>
<div itemscope itemtype="https://schema.org/Person">
  <span itemprop="name">John Doe</span>
  <link href="John-Doe.html" itemprop="url" />
  was a mythical …
</div>

Invisible property values

Similarly, the HTML element: meta[<meta> elements allows to define «invisible» property values:
<div itemscope itemtype="https://schema.org/Person">
  <span itemprop="name">John Doe</span>
  <meta itemprop="relatedTo" content="…" />
  was a mythical …
</div>

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759406253, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/web/HTML/attributes/item/index(87): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78