@prefix rdfhtml: <https://ia2.dev/spec/rdf-html#> .
@prefix ord: <https://ontology.inferal.com/modules/ordering/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<https://ia2.dev/spec/rdf-html>
    a owl:Ontology ;
    dcterms:title "IA² RDF/HTML vocabulary"@en ;
    dcterms:description "A dated, mechanically generated vocabulary for current HTML elements, attributes, syntax kinds, content categories, and DOM structure in RDF."@en ;
    dcterms:issued "2026-07-18"^^xsd:date ;
    dcterms:conformsTo <https://html.spec.whatwg.org/multipage/indices.html#elements-3>,
        <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/multipage/indices.html#element-content-categories>,
        <https://html.spec.whatwg.org/multipage/syntax.html#elements-2>,
        <https://html.spec.whatwg.org/> ;
    rdfhtml:sourceSnapshot
        [
            a rdfhtml:SourceSnapshot ;
            dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#elements-3> ;
            rdfhtml:sha256 "0f041a55046de178c6b644a0024d5ac0c0e925d7eaf30a946baa13ff6e61fe1e"
        ],
        [
            a rdfhtml:SourceSnapshot ;
            dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
            rdfhtml:sha256 "0f041a55046de178c6b644a0024d5ac0c0e925d7eaf30a946baa13ff6e61fe1e"
        ],
        [
            a rdfhtml:SourceSnapshot ;
            dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#element-content-categories> ;
            rdfhtml:sha256 "0f041a55046de178c6b644a0024d5ac0c0e925d7eaf30a946baa13ff6e61fe1e"
        ],
        [
            a rdfhtml:SourceSnapshot ;
            dcterms:source <https://html.spec.whatwg.org/multipage/syntax.html#elements-2> ;
            rdfhtml:sha256 "b71c19de942b28a9a86585fe97fde22e492a5666295a0470149fbd98f187323d"
        ],
        [
            a rdfhtml:SourceSnapshot ;
            dcterms:source <https://html.spec.whatwg.org/> ;
            rdfhtml:sha256 "5c5869be6ff3dbed33594f78be38dfcdc500b059cc4ff61b51f9dfc561494068"
        ] ;
    owl:versionInfo "0.1 (2026-07-18 HTML Living Standard snapshot)" .

rdfhtml:SourceSnapshot a owl:Class ; rdfs:label "source snapshot"@en .
rdfhtml:sourceSnapshot a owl:ObjectProperty ; rdfs:range rdfhtml:SourceSnapshot .
rdfhtml:sha256 a owl:DatatypeProperty ; rdfs:range xsd:string .
rdfhtml:ContentCategory a owl:Class ; rdfs:label "HTML content category"@en .
rdfhtml:ConditionalCategoryMembership a owl:Class ; rdfs:label "conditional category membership"@en .
rdfhtml:classifiedElementClass a owl:ObjectProperty ; rdfs:domain rdfhtml:ConditionalCategoryMembership ; rdfs:range owl:Class .
rdfhtml:category a owl:ObjectProperty ; rdfs:domain rdfhtml:ConditionalCategoryMembership ; rdfs:range owl:Class .
rdfhtml:conditionText a owl:DatatypeProperty ; rdfs:domain rdfhtml:ConditionalCategoryMembership ; rdfs:range xsd:string .
rdfhtml:indexNotation a owl:DatatypeProperty ; rdfs:domain rdfhtml:ConditionalCategoryMembership ; rdfs:range xsd:string .

rdfhtml:Node a owl:Class ; rdfs:label "DOM node"@en .
rdfhtml:Document a owl:Class ; rdfs:subClassOf rdfhtml:Node, ord:TotalOrdering ; rdfs:label "HTML document"@en .
rdfhtml:DocumentType a owl:Class ; rdfs:subClassOf rdfhtml:Node, ord:Comparable ; rdfs:label "document type"@en .
rdfhtml:Text a owl:Class ; rdfs:subClassOf rdfhtml:Node, ord:Comparable ; rdfs:label "text node"@en .
rdfhtml:Comment a owl:Class ; rdfs:subClassOf rdfhtml:Node, ord:Comparable ; rdfs:label "comment node"@en .
rdfhtml:Element a owl:Class ; rdfs:subClassOf rdfhtml:Node, ord:Comparable, ord:TotalOrdering ; rdfs:label "HTML element"@en .
rdfhtml:NormalElement a owl:Class ; rdfs:subClassOf rdfhtml:Element ; dcterms:source <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> .
rdfhtml:VoidElement a owl:Class ; rdfs:subClassOf rdfhtml:Element ; dcterms:source <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> .
rdfhtml:TemplateElement a owl:Class ; rdfs:subClassOf rdfhtml:Element ; dcterms:source <https://html.spec.whatwg.org/multipage/syntax.html#the-template-element-2> .
rdfhtml:RawTextElement a owl:Class ; rdfs:subClassOf rdfhtml:Element ; dcterms:source <https://html.spec.whatwg.org/multipage/syntax.html#raw-text-elements> .
rdfhtml:EscapableRawTextElement a owl:Class ; rdfs:subClassOf rdfhtml:Element ; dcterms:source <https://html.spec.whatwg.org/multipage/syntax.html#escapable-raw-text-elements> .
rdfhtml:ForeignElement a owl:Class ; rdfs:subClassOf rdfhtml:Element ; dcterms:source <https://html.spec.whatwg.org/multipage/syntax.html#foreign-elements> ; rdfs:comment "MathML and SVG namespace elements are a syntax kind recorded for provenance; generated named element classes cover only the HTML namespace."@en .
rdfhtml:CustomElement a owl:Class ; rdfs:subClassOf rdfhtml:Element ; rdfs:label "custom or future element"@en .
rdfhtml:Attribute a owl:Class ; rdfs:label "HTML attribute occurrence"@en .
rdfhtml:AttributeDefinition a owl:Class ; rdfs:label "indexed HTML attribute definition"@en .
rdfhtml:AttributeContext a owl:Class ; rdfs:label "HTML attribute applicability and value context"@en .

rdfhtml:hasChild a owl:ObjectProperty ;
    rdfs:domain rdfhtml:Node ;
    rdfs:range rdfhtml:Node ;
    rdfs:label "has child"@en ;
    owl:inverseOf rdfhtml:childOf ;
    owl:propertyChainAxiom ( rdfhtml:hasChild ord:immediatelyPrecedes ) ;
    owl:propertyChainAxiom ( rdfhtml:hasChild ord:precedes ) ;
    rdfs:comment "Associates a document or element with a direct child. Strict-precedence closure derives the remaining children in the same sibling ordering; immediate precedence additionally asserts adjacency."@en .
rdfhtml:childOf a owl:ObjectProperty ;
    rdfs:subPropertyOf ord:inOrdering ;
    rdfs:domain rdfhtml:Node ;
    rdfs:range rdfhtml:Node ;
    rdfs:label "child of"@en ;
    rdfs:comment "Inverse of rdfhtml:hasChild and a specialization of ordering-context membership."@en .
rdfhtml:children a owl:ObjectProperty ;
    rdfs:domain rdfhtml:Node ;
    rdfs:range rdf:List ;
    rdfs:label "ordered children"@en ;
    rdfs:comment "Links a document or element to one complete RDF list of its direct children. Processors normalize the list to child membership and immediate precedence before validation."@en .
rdfhtml:base a owl:ObjectProperty ; rdfs:domain rdfhtml:Document ; rdfs:label "document base IRI"@en .
rdfhtml:data a owl:DatatypeProperty ; rdfs:domain rdfhtml:Node ; rdfs:range xsd:string ; rdfs:label "node data"@en .
rdfhtml:documentTypeName a owl:DatatypeProperty ; rdfs:domain rdfhtml:DocumentType ; rdfs:range xsd:string .
rdfhtml:attribute a owl:ObjectProperty ; rdfs:domain rdfhtml:Element ; rdfs:range rdfhtml:Attribute .
rdfhtml:attributeName a owl:DatatypeProperty ; rdfs:domain rdfhtml:Attribute ; rdfs:range xsd:string .
rdfhtml:attributeValue a owl:DatatypeProperty ; rdfs:domain rdfhtml:Attribute ; rdfs:range xsd:string .
rdfhtml:attributeNamespace a owl:ObjectProperty ; rdfs:domain rdfhtml:Attribute .
rdfhtml:attributeDefinition a owl:ObjectProperty ; rdfs:domain rdfhtml:Attribute ; rdfs:range rdfhtml:AttributeDefinition .
rdfhtml:attributeContext a owl:ObjectProperty ; rdfs:domain rdfhtml:AttributeDefinition ; rdfs:range rdfhtml:AttributeContext .
rdfhtml:appliesTo a owl:ObjectProperty ; rdfs:domain rdfhtml:AttributeContext ; rdfs:range owl:Class .
rdfhtml:applicableParticipant a owl:DatatypeProperty ; rdfs:domain rdfhtml:AttributeContext ; rdfs:range xsd:string .
rdfhtml:globalAttribute a owl:DatatypeProperty ; rdfs:domain rdfhtml:AttributeContext ; rdfs:range xsd:boolean .
rdfhtml:valueSyntaxText a owl:DatatypeProperty ; rdfs:domain rdfhtml:AttributeContext ; rdfs:range xsd:string .
rdfhtml:definitionSource a owl:ObjectProperty ; rdfs:domain rdfhtml:AttributeContext .
rdfhtml:valueSyntaxSource a owl:ObjectProperty ; rdfs:domain rdfhtml:AttributeContext .
rdfhtml:localName a owl:DatatypeProperty ; rdfs:range xsd:string .
rdfhtml:namespace a owl:ObjectProperty .
rdfhtml:tagName a owl:AnnotationProperty ; rdfs:range xsd:string .
rdfhtml:attributeLocalName a owl:DatatypeProperty ; rdfs:domain rdfhtml:AttributeDefinition ; rdfs:range xsd:string .
rdfhtml:reflectedIdlName a owl:DatatypeProperty ; rdfs:domain rdfhtml:AttributeDefinition ; rdfs:range xsd:string .
rdfhtml:snapshotDate a owl:AnnotationProperty ; rdfs:range xsd:date .

rdfhtml:MetadataContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#metadata-content-2> ;
    rdfs:label "metadata content"@en .

rdfhtml:FlowContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#flow-content-2> ;
    rdfs:label "flow content"@en .

rdfhtml:SectioningContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#sectioning-content-2> ;
    rdfs:label "sectioning content"@en .

rdfhtml:HeadingContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#heading-content-2> ;
    rdfs:label "heading content"@en .

rdfhtml:PhrasingContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#phrasing-content-2> ;
    rdfs:label "phrasing content"@en .

rdfhtml:EmbeddedContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#embedded-content-category> ;
    rdfs:label "embedded content"@en .

rdfhtml:InteractiveContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2> ;
    rdfs:label "interactive content"@en .

rdfhtml:FormAssociatedElement
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#form-associated-element> ;
    rdfs:label "form-associated elements"@en .

rdfhtml:ListedElement
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#category-listed> ;
    rdfs:label "listed elements"@en .

rdfhtml:SubmittableElement
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#category-submit> ;
    rdfs:label "submittable elements"@en .

rdfhtml:ResettableElement
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#category-reset> ;
    rdfs:label "resettable elements"@en .

rdfhtml:AutocapitalizeAndAutocorrectInheritingElement
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize> ;
    rdfs:label "autocapitalize-and-autocorrect inheriting elements"@en .

rdfhtml:LabelableElement
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#category-label> ;
    rdfs:label "labelable elements"@en .

rdfhtml:PalpableContent
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfs:label "palpable content"@en .

rdfhtml:ScriptSupportingElement
    a owl:Class, rdfhtml:ContentCategory ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#script-supporting-elements-2> ;
    rdfs:label "script-supporting elements"@en .

rdfhtml:A
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "a" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-a-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "a element"@en .

rdfhtml:Abbr
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "abbr" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-abbr-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "abbr element"@en .

rdfhtml:Address
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "address" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-address-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "address element"@en .

rdfhtml:Area
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement ;
    rdfhtml:tagName "area" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/image-maps.html#the-area-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "area element"@en .

rdfhtml:Article
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:SectioningContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "article" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-article-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "article element"@en .

rdfhtml:Aside
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:SectioningContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "aside" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-aside-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "aside element"@en .

rdfhtml:Audio
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent ;
    rdfhtml:tagName "audio" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/media.html#the-audio-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "audio element"@en .

rdfhtml:B
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "b" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-b-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "b element"@en .

rdfhtml:Base
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:MetadataContent ;
    rdfhtml:tagName "base" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/semantics.html#the-base-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "base element"@en .

rdfhtml:Bdi
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "bdi" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-bdi-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "bdi element"@en .

rdfhtml:Bdo
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "bdo" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-bdo-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "bdo element"@en .

rdfhtml:Blockquote
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "blockquote" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-blockquote-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "blockquote element"@en .

rdfhtml:Body
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "body" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-body-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "body element"@en .

rdfhtml:Br
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent ;
    rdfhtml:tagName "br" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-br-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "br element"@en .

rdfhtml:Button
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:InteractiveContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:ListedElement,
        rdfhtml:SubmittableElement,
        rdfhtml:AutocapitalizeAndAutocorrectInheritingElement,
        rdfhtml:LabelableElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "button" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-button-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "button element"@en .

rdfhtml:Canvas
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "canvas" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/canvas.html#the-canvas-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "canvas element"@en .

rdfhtml:Caption
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "caption" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-caption-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "caption element"@en .

rdfhtml:Cite
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "cite" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-cite-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "cite element"@en .

rdfhtml:Code
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "code" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-code-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "code element"@en .

rdfhtml:Col
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement ;
    rdfhtml:tagName "col" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-col-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "col element"@en .

rdfhtml:Colgroup
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "colgroup" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-colgroup-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "colgroup element"@en .

rdfhtml:Data
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "data" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-data-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "data element"@en .

rdfhtml:Datalist
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent ;
    rdfhtml:tagName "datalist" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-datalist-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "datalist element"@en .

rdfhtml:Dd
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "dd" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-dd-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "dd element"@en .

rdfhtml:Del
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "del" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/edits.html#the-del-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "del element"@en .

rdfhtml:Details
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:InteractiveContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "details" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/interactive-elements.html#the-details-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "details element"@en .

rdfhtml:Dfn
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "dfn" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-dfn-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "dfn element"@en .

rdfhtml:Dialog
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent ;
    rdfhtml:tagName "dialog" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/interactive-elements.html#the-dialog-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "dialog element"@en .

rdfhtml:Div
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "div" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-div-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "div element"@en .

rdfhtml:Dl
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent ;
    rdfhtml:tagName "dl" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-dl-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "dl element"@en .

rdfhtml:Dt
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "dt" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-dt-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "dt element"@en .

rdfhtml:Em
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "em" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-em-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "em element"@en .

rdfhtml:Embed
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent,
        rdfhtml:InteractiveContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "embed" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-embed-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "embed element"@en .

rdfhtml:Fieldset
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:ListedElement,
        rdfhtml:AutocapitalizeAndAutocorrectInheritingElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "fieldset" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-fieldset-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "fieldset element"@en .

rdfhtml:Figcaption
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "figcaption" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-figcaption-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "figcaption element"@en .

rdfhtml:Figure
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "figure" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-figure-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "figure element"@en .

rdfhtml:Footer
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "footer" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-footer-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "footer element"@en .

rdfhtml:Form
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "form" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#the-form-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "form element"@en .

rdfhtml:H1
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:HeadingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "h1" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "h1 element"@en .

rdfhtml:H2
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:HeadingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "h2" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "h2 element"@en .

rdfhtml:H3
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:HeadingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "h3" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "h3 element"@en .

rdfhtml:H4
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:HeadingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "h4" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "h4 element"@en .

rdfhtml:H5
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:HeadingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "h5" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "h5 element"@en .

rdfhtml:H6
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:HeadingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "h6" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "h6 element"@en .

rdfhtml:Head
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "head" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/semantics.html#the-head-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "head element"@en .

rdfhtml:Header
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "header" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-header-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "header element"@en .

rdfhtml:Hgroup
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:HeadingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "hgroup" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-hgroup-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "hgroup element"@en .

rdfhtml:Hr
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:FlowContent ;
    rdfhtml:tagName "hr" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-hr-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "hr element"@en .

rdfhtml:Html
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "html" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/semantics.html#the-html-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "html element"@en .

rdfhtml:I
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "i" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-i-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "i element"@en .

rdfhtml:Iframe
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent,
        rdfhtml:InteractiveContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "iframe" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-iframe-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "iframe element"@en .

rdfhtml:Img
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "img" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/embedded-content.html#the-img-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "img element"@en .

rdfhtml:Input
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:ListedElement,
        rdfhtml:SubmittableElement,
        rdfhtml:ResettableElement,
        rdfhtml:AutocapitalizeAndAutocorrectInheritingElement,
        rdfhtml:LabelableElement ;
    rdfhtml:tagName "input" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/input.html#the-input-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "input element"@en .

rdfhtml:Ins
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "ins" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/edits.html#the-ins-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "ins element"@en .

rdfhtml:Kbd
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "kbd" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-kbd-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "kbd element"@en .

rdfhtml:Label
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:InteractiveContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "label" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/forms.html#the-label-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "label element"@en .

rdfhtml:Legend
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "legend" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-legend-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "legend element"@en .

rdfhtml:Li
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "li" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "li element"@en .

rdfhtml:Link
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:MetadataContent ;
    rdfhtml:tagName "link" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/semantics.html#the-link-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "link element"@en .

rdfhtml:Main
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "main" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-main-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "main element"@en .

rdfhtml:Map
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "map" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/image-maps.html#the-map-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "map element"@en .

rdfhtml:Mark
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "mark" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-mark-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "mark element"@en .

rdfhtml:Menu
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent ;
    rdfhtml:tagName "menu" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-menu-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "menu element"@en .

rdfhtml:Meta
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:MetadataContent ;
    rdfhtml:tagName "meta" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/semantics.html#the-meta-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "meta element"@en .

rdfhtml:Meter
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:LabelableElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "meter" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-meter-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "meter element"@en .

rdfhtml:Nav
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:SectioningContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "nav" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-nav-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "nav element"@en .

rdfhtml:Noscript
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:MetadataContent,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent ;
    rdfhtml:tagName "noscript" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/scripting.html#the-noscript-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "noscript element"@en .

rdfhtml:Object
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:ListedElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "object" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-object-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "object element"@en .

rdfhtml:Ol
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent ;
    rdfhtml:tagName "ol" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-ol-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "ol element"@en .

rdfhtml:Optgroup
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "optgroup" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-optgroup-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "optgroup element"@en .

rdfhtml:Option
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "option" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-option-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "option element"@en .

rdfhtml:Output
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:ListedElement,
        rdfhtml:ResettableElement,
        rdfhtml:AutocapitalizeAndAutocorrectInheritingElement,
        rdfhtml:LabelableElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "output" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-output-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "output element"@en .

rdfhtml:P
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "p" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-p-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "p element"@en .

rdfhtml:Picture
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "picture" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/embedded-content.html#the-picture-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "picture element"@en .

rdfhtml:Pre
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "pre" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-pre-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "pre element"@en .

rdfhtml:Progress
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:LabelableElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "progress" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-progress-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "progress element"@en .

rdfhtml:Q
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "q" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-q-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "q element"@en .

rdfhtml:Rp
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "rp" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-rp-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "rp element"@en .

rdfhtml:Rt
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "rt" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-rt-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "rt element"@en .

rdfhtml:Ruby
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "ruby" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-ruby-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "ruby element"@en .

rdfhtml:S
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "s" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-s-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "s element"@en .

rdfhtml:Samp
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "samp" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-samp-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "samp element"@en .

rdfhtml:Script
    a owl:Class ;
    rdfs:subClassOf rdfhtml:RawTextElement,
        rdfhtml:MetadataContent,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:ScriptSupportingElement ;
    rdfhtml:tagName "script" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/scripting.html#the-script-element>, <https://html.spec.whatwg.org/multipage/syntax.html#raw-text-elements> ;
    rdfs:label "script element"@en .

rdfhtml:Search
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "search" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-search-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "search element"@en .

rdfhtml:Section
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:SectioningContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "section" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/sections.html#the-section-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "section element"@en .

rdfhtml:Select
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:InteractiveContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:ListedElement,
        rdfhtml:SubmittableElement,
        rdfhtml:ResettableElement,
        rdfhtml:AutocapitalizeAndAutocorrectInheritingElement,
        rdfhtml:LabelableElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "select" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-select-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "select element"@en .

rdfhtml:Selectedcontent
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:PhrasingContent ;
    rdfhtml:tagName "selectedcontent" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-selectedcontent-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "selectedcontent element"@en .

rdfhtml:Slot
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent ;
    rdfhtml:tagName "slot" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/scripting.html#the-slot-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "slot element"@en .

rdfhtml:Small
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "small" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-small-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "small element"@en .

rdfhtml:Source
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement ;
    rdfhtml:tagName "source" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/embedded-content.html#the-source-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "source element"@en .

rdfhtml:Span
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "span" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-span-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "span element"@en .

rdfhtml:Strong
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "strong" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-strong-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "strong element"@en .

rdfhtml:Style
    a owl:Class ;
    rdfs:subClassOf rdfhtml:RawTextElement,
        rdfhtml:MetadataContent ;
    rdfhtml:tagName "style" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/semantics.html#the-style-element>, <https://html.spec.whatwg.org/multipage/syntax.html#raw-text-elements> ;
    rdfs:label "style element"@en .

rdfhtml:Sub
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "sub" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-sub-and-sup-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "sub element"@en .

rdfhtml:Summary
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "summary" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/interactive-elements.html#the-summary-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "summary element"@en .

rdfhtml:Sup
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "sup" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-sub-and-sup-elements>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "sup element"@en .

rdfhtml:Table
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "table" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-table-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "table element"@en .

rdfhtml:Tbody
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "tbody" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-tbody-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "tbody element"@en .

rdfhtml:Td
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "td" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-td-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "td element"@en .

rdfhtml:Template
    a owl:Class ;
    rdfs:subClassOf rdfhtml:TemplateElement,
        rdfhtml:MetadataContent,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:ScriptSupportingElement ;
    rdfhtml:tagName "template" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/scripting.html#the-template-element>, <https://html.spec.whatwg.org/multipage/syntax.html#the-template-element-2> ;
    rdfs:label "template element"@en .

rdfhtml:Textarea
    a owl:Class ;
    rdfs:subClassOf rdfhtml:EscapableRawTextElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:InteractiveContent,
        rdfhtml:FormAssociatedElement,
        rdfhtml:ListedElement,
        rdfhtml:SubmittableElement,
        rdfhtml:ResettableElement,
        rdfhtml:AutocapitalizeAndAutocorrectInheritingElement,
        rdfhtml:LabelableElement,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "textarea" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/form-elements.html#the-textarea-element>, <https://html.spec.whatwg.org/multipage/syntax.html#escapable-raw-text-elements> ;
    rdfs:label "textarea element"@en .

rdfhtml:Tfoot
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "tfoot" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-tfoot-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "tfoot element"@en .

rdfhtml:Th
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "th" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-th-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "th element"@en .

rdfhtml:Thead
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "thead" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-thead-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "thead element"@en .

rdfhtml:Time
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "time" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-time-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "time element"@en .

rdfhtml:Title
    a owl:Class ;
    rdfs:subClassOf rdfhtml:EscapableRawTextElement,
        rdfhtml:MetadataContent ;
    rdfhtml:tagName "title" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/semantics.html#the-title-element>, <https://html.spec.whatwg.org/multipage/syntax.html#escapable-raw-text-elements> ;
    rdfs:label "title element"@en .

rdfhtml:Tr
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement ;
    rdfhtml:tagName "tr" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-tr-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "tr element"@en .

rdfhtml:Track
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement ;
    rdfhtml:tagName "track" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/media.html#the-track-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "track element"@en .

rdfhtml:U
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "u" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-u-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "u element"@en .

rdfhtml:Ul
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent ;
    rdfhtml:tagName "ul" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/grouping-content.html#the-ul-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "ul element"@en .

rdfhtml:Var
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "var" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-var-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "var element"@en .

rdfhtml:Video
    a owl:Class ;
    rdfs:subClassOf rdfhtml:NormalElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent,
        rdfhtml:EmbeddedContent,
        rdfhtml:PalpableContent ;
    rdfhtml:tagName "video" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/media.html#the-video-element>, <https://html.spec.whatwg.org/multipage/syntax.html#normal-elements> ;
    rdfs:label "video element"@en .

rdfhtml:Wbr
    a owl:Class ;
    rdfs:subClassOf rdfhtml:VoidElement,
        rdfhtml:FlowContent,
        rdfhtml:PhrasingContent ;
    rdfhtml:tagName "wbr" ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-wbr-element>, <https://html.spec.whatwg.org/multipage/syntax.html#void-elements> ;
    rdfs:label "wbr element"@en .

rdfhtml:abbr
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "abbr" ;
    rdfhtml:reflectedIdlName "abbr" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-abbr-th ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-th-abbr> ;
    rdfs:label "abbr attribute"@en .

rdfhtml:accept
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "accept" ;
    rdfhtml:reflectedIdlName "accept" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-accept-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-accept> ;
    rdfs:label "accept attribute"@en .

rdfhtml:acceptCharset
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "accept-charset" ;
    rdfhtml:reflectedIdlName "acceptCharset" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-accept-charset-form ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-form-acceptcharset> ;
    rdfs:label "accept-charset attribute"@en .

rdfhtml:accessKey
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "accesskey" ;
    rdfhtml:reflectedIdlName "accessKey" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-accesskey-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-accesskey> ;
    rdfs:label "accesskey attribute"@en .

rdfhtml:action
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "action" ;
    rdfhtml:reflectedIdlName "action" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-action-form ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-fs-action> ;
    rdfs:label "action attribute"@en .

rdfhtml:allow
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "allow" ;
    rdfhtml:reflectedIdlName "allow" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-allow-iframe ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-iframe-allow> ;
    rdfs:label "allow attribute"@en .

rdfhtml:allowFullscreen
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "allowfullscreen" ;
    rdfhtml:reflectedIdlName "allowFullscreen" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-allowfullscreen-iframe ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-iframe-allowfullscreen> ;
    rdfs:label "allowfullscreen attribute"@en .

rdfhtml:alpha
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "alpha" ;
    rdfhtml:reflectedIdlName "alpha" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-alpha-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-alpha> ;
    rdfs:label "alpha attribute"@en .

rdfhtml:alt
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "alt" ;
    rdfhtml:reflectedIdlName "alt" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-alt-area-img-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-area-alt>,
        <https://html.spec.whatwg.org/#dom-img-alt>,
        <https://html.spec.whatwg.org/#dom-input-alt> ;
    rdfs:label "alt attribute"@en .

rdfhtml:as
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "as" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-as-link ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "as attribute"@en .

rdfhtml:async
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "async" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-async-script ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "async attribute"@en .

rdfhtml:autocapitalize
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "autocapitalize" ;
    rdfhtml:reflectedIdlName "autocapitalize" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-autocapitalize-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-autocapitalize> ;
    rdfs:label "autocapitalize attribute"@en .

rdfhtml:autocomplete
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "autocomplete" ;
    rdfhtml:reflectedIdlName "autocomplete" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-autocomplete-form,
        rdfhtml:attribute-context-autocomplete-input-select-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-fe-autocomplete> ;
    rdfs:label "autocomplete attribute"@en .

rdfhtml:autocorrect
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "autocorrect" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-autocorrect-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "autocorrect attribute"@en .

rdfhtml:autofocus
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "autofocus" ;
    rdfhtml:reflectedIdlName "autofocus" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-autofocus-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-fe-autofocus> ;
    rdfs:label "autofocus attribute"@en .

rdfhtml:autoplay
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "autoplay" ;
    rdfhtml:reflectedIdlName "autoplay" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-autoplay-audio-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-media-autoplay> ;
    rdfs:label "autoplay attribute"@en .

rdfhtml:blocking
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "blocking" ;
    rdfhtml:reflectedIdlName "blocking" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-blocking-link-script-style ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-link-blocking>,
        <https://html.spec.whatwg.org/#dom-script-blocking>,
        <https://html.spec.whatwg.org/#dom-style-blocking> ;
    rdfs:label "blocking attribute"@en .

rdfhtml:charset
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "charset" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-charset-meta ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "charset attribute"@en .

rdfhtml:checked
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "checked" ;
    rdfhtml:reflectedIdlName "defaultChecked" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-checked-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-defaultchecked> ;
    rdfs:label "checked attribute"@en .

rdfhtml:cite
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "cite" ;
    rdfhtml:reflectedIdlName "cite" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-cite-blockquote-del-ins-q ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-mod-cite>,
        <https://html.spec.whatwg.org/#dom-quote-cite> ;
    rdfs:label "cite attribute"@en .

rdfhtml:class
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "class" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-class-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "class attribute"@en .

rdfhtml:closedBy
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "closedby" ;
    rdfhtml:reflectedIdlName "closedBy" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-closedby-dialog ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-dialog-closedby> ;
    rdfs:label "closedby attribute"@en .

rdfhtml:color
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "color" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-color-link ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "color attribute"@en .

rdfhtml:colorspace
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "colorspace" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-colorspace-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "colorspace attribute"@en .

rdfhtml:cols
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "cols" ;
    rdfhtml:reflectedIdlName "cols" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-cols-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-textarea-cols> ;
    rdfs:label "cols attribute"@en .

rdfhtml:colSpan
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "colspan" ;
    rdfhtml:reflectedIdlName "colSpan" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-colspan-td-th ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-tdth-colspan> ;
    rdfs:label "colspan attribute"@en .

rdfhtml:command
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "command" ;
    rdfhtml:reflectedIdlName "command" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-command-button ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-button-command> ;
    rdfs:label "command attribute"@en .

rdfhtml:commandfor
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "commandfor" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-commandfor-button ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "commandfor attribute"@en .

rdfhtml:content
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "content" ;
    rdfhtml:reflectedIdlName "content" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-content-meta ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-meta-content> ;
    rdfs:label "content attribute"@en .

rdfhtml:contenteditable
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "contenteditable" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-contenteditable-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "contenteditable attribute"@en .

rdfhtml:controls
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "controls" ;
    rdfhtml:reflectedIdlName "controls" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-controls-audio-img-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-img-controls>,
        <https://html.spec.whatwg.org/#dom-media-controls> ;
    rdfs:label "controls attribute"@en .

rdfhtml:coords
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "coords" ;
    rdfhtml:reflectedIdlName "coords" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-coords-area ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-area-coords> ;
    rdfs:label "coords attribute"@en .

rdfhtml:crossorigin
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "crossorigin" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-crossorigin-audio-img-link-script-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "crossorigin attribute"@en .

rdfhtml:dataAttribute
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "data" ;
    rdfhtml:reflectedIdlName "data" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-data-object ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-object-data> ;
    rdfs:label "data attribute"@en .

rdfhtml:dateTime
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "datetime" ;
    rdfhtml:reflectedIdlName "dateTime" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-datetime-del-ins,
        rdfhtml:attribute-context-datetime-time ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-mod-datetime>,
        <https://html.spec.whatwg.org/#dom-time-datetime> ;
    rdfs:label "datetime attribute"@en .

rdfhtml:decoding
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "decoding" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-decoding-img ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "decoding attribute"@en .

rdfhtml:default
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "default" ;
    rdfhtml:reflectedIdlName "default" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-default-track ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-track-default> ;
    rdfs:label "default attribute"@en .

rdfhtml:defer
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "defer" ;
    rdfhtml:reflectedIdlName "defer" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-defer-script ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-script-defer> ;
    rdfs:label "defer attribute"@en .

rdfhtml:dir
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "dir" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-dir-global,
        rdfhtml:attribute-context-dir-bdo ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "dir attribute"@en .

rdfhtml:dirName
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "dirname" ;
    rdfhtml:reflectedIdlName "dirName" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-dirname-input-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-dirname>,
        <https://html.spec.whatwg.org/#dom-textarea-dirname> ;
    rdfs:label "dirname attribute"@en .

rdfhtml:disabled
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "disabled" ;
    rdfhtml:reflectedIdlName "disabled" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-disabled-button-input-optgroup-option-select-textarea-form-associated-custom-elements,
        rdfhtml:attribute-context-disabled-fieldset,
        rdfhtml:attribute-context-disabled-link ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-button-disabled>,
        <https://html.spec.whatwg.org/#dom-fe-disabled>,
        <https://html.spec.whatwg.org/#dom-fieldset-disabled>,
        <https://html.spec.whatwg.org/#dom-link-disabled>,
        <https://html.spec.whatwg.org/#dom-optgroup-disabled>,
        <https://html.spec.whatwg.org/#dom-option-disabled>,
        <https://html.spec.whatwg.org/#dom-select-disabled>,
        <https://html.spec.whatwg.org/#dom-textarea-disabled> ;
    rdfs:label "disabled attribute"@en .

rdfhtml:download
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "download" ;
    rdfhtml:reflectedIdlName "download" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-download-a-area ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-a-download>,
        <https://html.spec.whatwg.org/#dom-area-download> ;
    rdfs:label "download attribute"@en .

rdfhtml:draggable
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "draggable" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-draggable-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "draggable attribute"@en .

rdfhtml:enctype
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "enctype" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-enctype-form ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "enctype attribute"@en .

rdfhtml:enterkeyhint
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "enterkeyhint" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-enterkeyhint-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "enterkeyhint attribute"@en .

rdfhtml:fetchpriority
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "fetchpriority" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-fetchpriority-img-link-script ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "fetchpriority attribute"@en .

rdfhtml:for
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "for" ;
    rdfhtml:reflectedIdlName "htmlFor" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-for-label,
        rdfhtml:attribute-context-for-output ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-label-htmlfor>,
        <https://html.spec.whatwg.org/#dom-output-htmlfor> ;
    rdfs:label "for attribute"@en .

rdfhtml:form
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "form" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-form-button-fieldset-input-object-output-select-textarea-form-associated-custom-elements ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "form attribute"@en .

rdfhtml:formAction
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "formaction" ;
    rdfhtml:reflectedIdlName "formAction" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-formaction-button-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-fs-formaction> ;
    rdfs:label "formaction attribute"@en .

rdfhtml:formenctype
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "formenctype" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-formenctype-button-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "formenctype attribute"@en .

rdfhtml:formmethod
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "formmethod" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-formmethod-button-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "formmethod attribute"@en .

rdfhtml:formNoValidate
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "formnovalidate" ;
    rdfhtml:reflectedIdlName "formNoValidate" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-formnovalidate-button-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-button-formnovalidate>,
        <https://html.spec.whatwg.org/#dom-fs-formnovalidate> ;
    rdfs:label "formnovalidate attribute"@en .

rdfhtml:formTarget
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "formtarget" ;
    rdfhtml:reflectedIdlName "formTarget" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-formtarget-button-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-button-formtarget>,
        <https://html.spec.whatwg.org/#dom-fs-formtarget> ;
    rdfs:label "formtarget attribute"@en .

rdfhtml:headers
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "headers" ;
    rdfhtml:reflectedIdlName "headers" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-headers-td-th ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-tdth-headers> ;
    rdfs:label "headers attribute"@en .

rdfhtml:headingOffset
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "headingoffset" ;
    rdfhtml:reflectedIdlName "headingOffset" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-headingoffset-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-headingoffset> ;
    rdfs:label "headingoffset attribute"@en .

rdfhtml:headingReset
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "headingreset" ;
    rdfhtml:reflectedIdlName "headingReset" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-headingreset-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-headingreset> ;
    rdfs:label "headingreset attribute"@en .

rdfhtml:height
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "height" ;
    rdfhtml:reflectedIdlName "height" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-height-canvas-embed-iframe-img-input-object-source-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-dim-height>,
        <https://html.spec.whatwg.org/#dom-embed-height>,
        <https://html.spec.whatwg.org/#dom-img-height>,
        <https://html.spec.whatwg.org/#dom-input-height>,
        <https://html.spec.whatwg.org/#dom-object-height>,
        <https://html.spec.whatwg.org/#dom-source-height>,
        <https://html.spec.whatwg.org/#dom-video-height> ;
    rdfs:label "height attribute"@en .

rdfhtml:hidden
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "hidden" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-hidden-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "hidden attribute"@en .

rdfhtml:high
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "high" ;
    rdfhtml:reflectedIdlName "high" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-high-meter ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-meter-high> ;
    rdfs:label "high attribute"@en .

rdfhtml:href
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "href" ;
    rdfhtml:reflectedIdlName "href" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-href-a-area,
        rdfhtml:attribute-context-href-link,
        rdfhtml:attribute-context-href-base ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-base-href>,
        <https://html.spec.whatwg.org/#dom-hyperlink-href>,
        <https://html.spec.whatwg.org/#dom-link-href> ;
    rdfs:label "href attribute"@en .

rdfhtml:hreflang
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "hreflang" ;
    rdfhtml:reflectedIdlName "hreflang" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-hreflang-a-link ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-a-hreflang>,
        <https://html.spec.whatwg.org/#dom-link-hreflang> ;
    rdfs:label "hreflang attribute"@en .

rdfhtml:httpEquiv
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "http-equiv" ;
    rdfhtml:reflectedIdlName "httpEquiv" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-http-equiv-meta ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-meta-httpequiv> ;
    rdfs:label "http-equiv attribute"@en .

rdfhtml:id
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "id" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-id-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "id attribute"@en .

rdfhtml:imageSizes
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "imagesizes" ;
    rdfhtml:reflectedIdlName "imageSizes" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-imagesizes-link ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-link-imagesizes> ;
    rdfs:label "imagesizes attribute"@en .

rdfhtml:imageSrcset
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "imagesrcset" ;
    rdfhtml:reflectedIdlName "imageSrcset" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-imagesrcset-link ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-link-imagesrcset> ;
    rdfs:label "imagesrcset attribute"@en .

rdfhtml:inert
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "inert" ;
    rdfhtml:reflectedIdlName "inert" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-inert-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-inert> ;
    rdfs:label "inert attribute"@en .

rdfhtml:inputmode
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "inputmode" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-inputmode-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "inputmode attribute"@en .

rdfhtml:integrity
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "integrity" ;
    rdfhtml:reflectedIdlName "integrity" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-integrity-link-script ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-link-integrity>,
        <https://html.spec.whatwg.org/#dom-script-integrity> ;
    rdfs:label "integrity attribute"@en .

rdfhtml:is
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "is" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-is-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "is attribute"@en .

rdfhtml:isMap
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "ismap" ;
    rdfhtml:reflectedIdlName "isMap" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-ismap-img ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-img-ismap> ;
    rdfs:label "ismap attribute"@en .

rdfhtml:itemid
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "itemid" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-itemid-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "itemid attribute"@en .

rdfhtml:itemprop
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "itemprop" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-itemprop-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "itemprop attribute"@en .

rdfhtml:itemref
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "itemref" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-itemref-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "itemref attribute"@en .

rdfhtml:itemscope
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "itemscope" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-itemscope-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "itemscope attribute"@en .

rdfhtml:itemtype
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "itemtype" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-itemtype-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "itemtype attribute"@en .

rdfhtml:kind
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "kind" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-kind-track ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "kind attribute"@en .

rdfhtml:label
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "label" ;
    rdfhtml:reflectedIdlName "label" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-label-optgroup-option-track ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-optgroup-label>,
        <https://html.spec.whatwg.org/#dom-option-label>,
        <https://html.spec.whatwg.org/#dom-track-label> ;
    rdfs:label "label attribute"@en .

rdfhtml:lang
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "lang" ;
    rdfhtml:reflectedIdlName "lang" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-lang-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-lang> ;
    rdfs:label "lang attribute"@en .

rdfhtml:list
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "list" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-list-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "list attribute"@en .

rdfhtml:loading
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "loading" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-loading-audio-iframe-img-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "loading attribute"@en .

rdfhtml:loop
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "loop" ;
    rdfhtml:reflectedIdlName "loop" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-loop-audio-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-media-loop> ;
    rdfs:label "loop attribute"@en .

rdfhtml:low
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "low" ;
    rdfhtml:reflectedIdlName "low" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-low-meter ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-meter-low> ;
    rdfs:label "low attribute"@en .

rdfhtml:max
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "max" ;
    rdfhtml:reflectedIdlName "max" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-max-input,
        rdfhtml:attribute-context-max-meter-progress ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-max>,
        <https://html.spec.whatwg.org/#dom-meter-max>,
        <https://html.spec.whatwg.org/#dom-progress-max> ;
    rdfs:label "max attribute"@en .

rdfhtml:maxLength
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "maxlength" ;
    rdfhtml:reflectedIdlName "maxLength" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-maxlength-input-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-maxlength>,
        <https://html.spec.whatwg.org/#dom-textarea-maxlength> ;
    rdfs:label "maxlength attribute"@en .

rdfhtml:media
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "media" ;
    rdfhtml:reflectedIdlName "media" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-media-link-meta-source-style ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-link-media>,
        <https://html.spec.whatwg.org/#dom-meta-media>,
        <https://html.spec.whatwg.org/#dom-source-media>,
        <https://html.spec.whatwg.org/#dom-style-media> ;
    rdfs:label "media attribute"@en .

rdfhtml:method
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "method" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-method-form ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "method attribute"@en .

rdfhtml:min
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "min" ;
    rdfhtml:reflectedIdlName "min" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-min-input,
        rdfhtml:attribute-context-min-meter ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-min>,
        <https://html.spec.whatwg.org/#dom-meter-min> ;
    rdfs:label "min attribute"@en .

rdfhtml:minLength
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "minlength" ;
    rdfhtml:reflectedIdlName "minLength" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-minlength-input-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-minlength>,
        <https://html.spec.whatwg.org/#dom-textarea-minlength> ;
    rdfs:label "minlength attribute"@en .

rdfhtml:multiple
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "multiple" ;
    rdfhtml:reflectedIdlName "multiple" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-multiple-input-select ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-multiple>,
        <https://html.spec.whatwg.org/#dom-select-multiple> ;
    rdfs:label "multiple attribute"@en .

rdfhtml:muted
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "muted" ;
    rdfhtml:reflectedIdlName "defaultMuted" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-muted-audio-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-media-defaultmuted> ;
    rdfs:label "muted attribute"@en .

rdfhtml:name
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "name" ;
    rdfhtml:reflectedIdlName "name" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-name-button-fieldset-input-output-select-textarea-form-associated-custom-elements,
        rdfhtml:attribute-context-name-details,
        rdfhtml:attribute-context-name-form,
        rdfhtml:attribute-context-name-iframe-object,
        rdfhtml:attribute-context-name-map,
        rdfhtml:attribute-context-name-meta,
        rdfhtml:attribute-context-name-slot ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-button-name>,
        <https://html.spec.whatwg.org/#dom-details-name>,
        <https://html.spec.whatwg.org/#dom-fe-name>,
        <https://html.spec.whatwg.org/#dom-fieldset-name>,
        <https://html.spec.whatwg.org/#dom-form-name>,
        <https://html.spec.whatwg.org/#dom-iframe-name>,
        <https://html.spec.whatwg.org/#dom-map-name>,
        <https://html.spec.whatwg.org/#dom-meta-name>,
        <https://html.spec.whatwg.org/#dom-object-name>,
        <https://html.spec.whatwg.org/#dom-output-name>,
        <https://html.spec.whatwg.org/#dom-select-name>,
        <https://html.spec.whatwg.org/#dom-slot-name>,
        <https://html.spec.whatwg.org/#dom-textarea-name> ;
    rdfs:label "name attribute"@en .

rdfhtml:noModule
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "nomodule" ;
    rdfhtml:reflectedIdlName "noModule" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-nomodule-script ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-script-nomodule> ;
    rdfs:label "nomodule attribute"@en .

rdfhtml:nonce
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "nonce" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-nonce-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "nonce attribute"@en .

rdfhtml:noValidate
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "novalidate" ;
    rdfhtml:reflectedIdlName "noValidate" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-novalidate-form ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-fs-novalidate> ;
    rdfs:label "novalidate attribute"@en .

rdfhtml:open
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "open" ;
    rdfhtml:reflectedIdlName "open" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-open-details,
        rdfhtml:attribute-context-open-dialog ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-details-open>,
        <https://html.spec.whatwg.org/#dom-dialog-open> ;
    rdfs:label "open attribute"@en .

rdfhtml:optimum
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "optimum" ;
    rdfhtml:reflectedIdlName "optimum" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-optimum-meter ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-meter-optimum> ;
    rdfs:label "optimum attribute"@en .

rdfhtml:pattern
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "pattern" ;
    rdfhtml:reflectedIdlName "pattern" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-pattern-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-pattern> ;
    rdfs:label "pattern attribute"@en .

rdfhtml:ping
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "ping" ;
    rdfhtml:reflectedIdlName "ping" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-ping-a-area ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-a-ping>,
        <https://html.spec.whatwg.org/#dom-area-ping> ;
    rdfs:label "ping attribute"@en .

rdfhtml:placeholder
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "placeholder" ;
    rdfhtml:reflectedIdlName "placeholder" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-placeholder-input-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-placeholder>,
        <https://html.spec.whatwg.org/#dom-textarea-placeholder> ;
    rdfs:label "placeholder attribute"@en .

rdfhtml:playsInline
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "playsinline" ;
    rdfhtml:reflectedIdlName "playsInline" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-playsinline-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-video-playsinline> ;
    rdfs:label "playsinline attribute"@en .

rdfhtml:popover
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "popover" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-popover-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "popover attribute"@en .

rdfhtml:popovertarget
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "popovertarget" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-popovertarget-button-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "popovertarget attribute"@en .

rdfhtml:popovertargetaction
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "popovertargetaction" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-popovertargetaction-button-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "popovertargetaction attribute"@en .

rdfhtml:poster
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "poster" ;
    rdfhtml:reflectedIdlName "poster" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-poster-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-video-poster> ;
    rdfs:label "poster attribute"@en .

rdfhtml:preload
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "preload" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-preload-audio-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "preload attribute"@en .

rdfhtml:readOnly
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "readonly" ;
    rdfhtml:reflectedIdlName "readOnly" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-readonly-input-textarea,
        rdfhtml:attribute-context-readonly-form-associated-custom-elements ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-readonly>,
        <https://html.spec.whatwg.org/#dom-textarea-readonly> ;
    rdfs:label "readonly attribute"@en .

rdfhtml:referrerpolicy
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "referrerpolicy" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-referrerpolicy-a-area-iframe-img-link-script ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "referrerpolicy attribute"@en .

rdfhtml:rel
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "rel" ;
    rdfhtml:reflectedIdlName "rel" ;
    rdfhtml:reflectedIdlName "relList" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-rel-a-area,
        rdfhtml:attribute-context-rel-link ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-a-rel>,
        <https://html.spec.whatwg.org/#dom-area-rel>,
        <https://html.spec.whatwg.org/#dom-form-rel>,
        <https://html.spec.whatwg.org/#dom-link-rel>,
        <https://html.spec.whatwg.org/#dom-a-rellist>,
        <https://html.spec.whatwg.org/#dom-area-rellist>,
        <https://html.spec.whatwg.org/#dom-form-rellist>,
        <https://html.spec.whatwg.org/#dom-link-rellist> ;
    rdfs:label "rel attribute"@en .

rdfhtml:required
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "required" ;
    rdfhtml:reflectedIdlName "required" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-required-input-select-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-required>,
        <https://html.spec.whatwg.org/#dom-select-required>,
        <https://html.spec.whatwg.org/#dom-textarea-required> ;
    rdfs:label "required attribute"@en .

rdfhtml:reversed
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "reversed" ;
    rdfhtml:reflectedIdlName "reversed" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-reversed-ol ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-ol-reversed> ;
    rdfs:label "reversed attribute"@en .

rdfhtml:rows
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "rows" ;
    rdfhtml:reflectedIdlName "rows" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-rows-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-textarea-rows> ;
    rdfs:label "rows attribute"@en .

rdfhtml:rowSpan
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "rowspan" ;
    rdfhtml:reflectedIdlName "rowSpan" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-rowspan-td-th ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-tdth-rowspan> ;
    rdfs:label "rowspan attribute"@en .

rdfhtml:sandbox
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "sandbox" ;
    rdfhtml:reflectedIdlName "sandbox" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-sandbox-iframe ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-iframe-sandbox> ;
    rdfs:label "sandbox attribute"@en .

rdfhtml:scope
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "scope" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-scope-th ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "scope attribute"@en .

rdfhtml:selected
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "selected" ;
    rdfhtml:reflectedIdlName "defaultSelected" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-selected-option ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-option-defaultselected> ;
    rdfs:label "selected attribute"@en .

rdfhtml:shadowRootClonable
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "shadowrootclonable" ;
    rdfhtml:reflectedIdlName "shadowRootClonable" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-shadowrootclonable-template ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-template-shadowrootclonable> ;
    rdfs:label "shadowrootclonable attribute"@en .

rdfhtml:shadowRootCustomElementRegistry
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "shadowrootcustomelementregistry" ;
    rdfhtml:reflectedIdlName "shadowRootCustomElementRegistry" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-shadowrootcustomelementregistry-template ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-template-shadowrootcustomelementregistry> ;
    rdfs:label "shadowrootcustomelementregistry attribute"@en .

rdfhtml:shadowRootDelegatesFocus
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "shadowrootdelegatesfocus" ;
    rdfhtml:reflectedIdlName "shadowRootDelegatesFocus" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-shadowrootdelegatesfocus-template ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-template-shadowrootdelegatesfocus> ;
    rdfs:label "shadowrootdelegatesfocus attribute"@en .

rdfhtml:shadowrootmode
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "shadowrootmode" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-shadowrootmode-template ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "shadowrootmode attribute"@en .

rdfhtml:shadowRootSerializable
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "shadowrootserializable" ;
    rdfhtml:reflectedIdlName "shadowRootSerializable" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-shadowrootserializable-template ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-template-shadowrootserializable> ;
    rdfs:label "shadowrootserializable attribute"@en .

rdfhtml:shadowrootslotassignment
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "shadowrootslotassignment" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-shadowrootslotassignment-template ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "shadowrootslotassignment attribute"@en .

rdfhtml:shape
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "shape" ;
    rdfhtml:reflectedIdlName "shape" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-shape-area ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-area-shape> ;
    rdfs:label "shape attribute"@en .

rdfhtml:size
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "size" ;
    rdfhtml:reflectedIdlName "size" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-size-input-select ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-size>,
        <https://html.spec.whatwg.org/#dom-select-size> ;
    rdfs:label "size attribute"@en .

rdfhtml:sizes
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "sizes" ;
    rdfhtml:reflectedIdlName "sizes" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-sizes-link,
        rdfhtml:attribute-context-sizes-img-source ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-img-sizes>,
        <https://html.spec.whatwg.org/#dom-link-sizes>,
        <https://html.spec.whatwg.org/#dom-source-sizes> ;
    rdfs:label "sizes attribute"@en .

rdfhtml:slot
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "slot" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-slot-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "slot attribute"@en .

rdfhtml:span
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "span" ;
    rdfhtml:reflectedIdlName "span" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-span-col-colgroup ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-colgroup-span> ;
    rdfs:label "span attribute"@en .

rdfhtml:spellcheck
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "spellcheck" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-spellcheck-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "spellcheck attribute"@en .

rdfhtml:src
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "src" ;
    rdfhtml:reflectedIdlName "src" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-src-audio-embed-iframe-img-input-script-source-track-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-embed-src>,
        <https://html.spec.whatwg.org/#dom-iframe-src>,
        <https://html.spec.whatwg.org/#dom-img-src>,
        <https://html.spec.whatwg.org/#dom-input-src>,
        <https://html.spec.whatwg.org/#dom-media-src>,
        <https://html.spec.whatwg.org/#dom-script-src>,
        <https://html.spec.whatwg.org/#dom-source-src>,
        <https://html.spec.whatwg.org/#dom-track-src> ;
    rdfs:label "src attribute"@en .

rdfhtml:srcdoc
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "srcdoc" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-srcdoc-iframe ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "srcdoc attribute"@en .

rdfhtml:srclang
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "srclang" ;
    rdfhtml:reflectedIdlName "srclang" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-srclang-track ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-track-srclang> ;
    rdfs:label "srclang attribute"@en .

rdfhtml:srcset
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "srcset" ;
    rdfhtml:reflectedIdlName "srcset" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-srcset-img-source ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-img-srcset>,
        <https://html.spec.whatwg.org/#dom-source-srcset> ;
    rdfs:label "srcset attribute"@en .

rdfhtml:start
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "start" ;
    rdfhtml:reflectedIdlName "start" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-start-ol ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-ol-start> ;
    rdfs:label "start attribute"@en .

rdfhtml:step
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "step" ;
    rdfhtml:reflectedIdlName "step" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-step-input ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-step> ;
    rdfs:label "step attribute"@en .

rdfhtml:style
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "style" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-style-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "style attribute"@en .

rdfhtml:tabIndex
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "tabindex" ;
    rdfhtml:reflectedIdlName "tabIndex" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-tabindex-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-tabindex> ;
    rdfs:label "tabindex attribute"@en .

rdfhtml:target
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "target" ;
    rdfhtml:reflectedIdlName "target" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-target-a-area,
        rdfhtml:attribute-context-target-base,
        rdfhtml:attribute-context-target-form ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-a-target>,
        <https://html.spec.whatwg.org/#dom-base-target>,
        <https://html.spec.whatwg.org/#dom-fs-target> ;
    rdfs:label "target attribute"@en .

rdfhtml:title
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "title" ;
    rdfhtml:reflectedIdlName "title" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-title-global,
        rdfhtml:attribute-context-title-abbr-dfn,
        rdfhtml:attribute-context-title-input,
        rdfhtml:attribute-context-title-link,
        rdfhtml:attribute-context-title-link-style ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-title> ;
    rdfs:label "title attribute"@en .

rdfhtml:translate
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "translate" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-translate-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> ;
    rdfs:label "translate attribute"@en .

rdfhtml:type
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "type" ;
    rdfhtml:reflectedIdlName "type" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-type-a-link,
        rdfhtml:attribute-context-type-button,
        rdfhtml:attribute-context-type-embed-object-source,
        rdfhtml:attribute-context-type-input,
        rdfhtml:attribute-context-type-ol,
        rdfhtml:attribute-context-type-script ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-a-type>,
        <https://html.spec.whatwg.org/#dom-button-type>,
        <https://html.spec.whatwg.org/#dom-embed-type>,
        <https://html.spec.whatwg.org/#dom-link-type>,
        <https://html.spec.whatwg.org/#dom-object-type>,
        <https://html.spec.whatwg.org/#dom-ol-type>,
        <https://html.spec.whatwg.org/#dom-script-type>,
        <https://html.spec.whatwg.org/#dom-source-type> ;
    rdfs:label "type attribute"@en .

rdfhtml:useMap
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "usemap" ;
    rdfhtml:reflectedIdlName "useMap" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-usemap-img ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-img-usemap> ;
    rdfs:label "usemap attribute"@en .

rdfhtml:value
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "value" ;
    rdfhtml:reflectedIdlName "defaultValue" ;
    rdfhtml:reflectedIdlName "value" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-value-button-option,
        rdfhtml:attribute-context-value-data,
        rdfhtml:attribute-context-value-input,
        rdfhtml:attribute-context-value-li,
        rdfhtml:attribute-context-value-meter-progress ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-input-defaultvalue>,
        <https://html.spec.whatwg.org/#dom-button-value>,
        <https://html.spec.whatwg.org/#dom-data-value>,
        <https://html.spec.whatwg.org/#dom-li-value>,
        <https://html.spec.whatwg.org/#dom-meter-value>,
        <https://html.spec.whatwg.org/#dom-option-value>,
        <https://html.spec.whatwg.org/#dom-progress-value> ;
    rdfs:label "value attribute"@en .

rdfhtml:width
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "width" ;
    rdfhtml:reflectedIdlName "width" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-width-canvas-embed-iframe-img-input-object-source-video ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-dim-width>,
        <https://html.spec.whatwg.org/#dom-embed-width>,
        <https://html.spec.whatwg.org/#dom-img-width>,
        <https://html.spec.whatwg.org/#dom-input-width>,
        <https://html.spec.whatwg.org/#dom-object-width>,
        <https://html.spec.whatwg.org/#dom-source-width>,
        <https://html.spec.whatwg.org/#dom-video-width> ;
    rdfs:label "width attribute"@en .

rdfhtml:wrap
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "wrap" ;
    rdfhtml:reflectedIdlName "wrap" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-wrap-textarea ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-textarea-wrap> ;
    rdfs:label "wrap attribute"@en .

rdfhtml:writingSuggestions
    a rdfhtml:AttributeDefinition, owl:DatatypeProperty ;
    rdfs:domain rdfhtml:Element ;
    rdfs:range xsd:string ;
    rdfhtml:attributeLocalName "writingsuggestions" ;
    rdfhtml:reflectedIdlName "writingSuggestions" ;
    rdfhtml:attributeContext rdfhtml:attribute-context-writingsuggestions-global ;
    rdfhtml:snapshotDate "2026-07-18"^^xsd:date ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3>,
        <https://html.spec.whatwg.org/#dom-writingsuggestions> ;
    rdfs:label "writingsuggestions attribute"@en .

rdfhtml:attribute-context-abbr-th
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:abbr ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Th ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/tables.html#attr-th-abbr> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Alternative label to use for the header cell when referencing the cell in other contexts"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-accept-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:accept ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Set of comma-separated tokens* consisting of valid MIME type strings with no parameters or audio/*, video/*, or image/*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-accept> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#set-of-comma-separated-tokens> ;
    rdfhtml:valueSyntaxSource <https://mimesniff.spec.whatwg.org/#valid-mime-type-with-no-parameters> ;
    dcterms:description "Hint for expected file type in file upload controls"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-accept-charset-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:acceptCharset ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "ASCII case-insensitive match for \"UTF-8\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/forms.html#attr-form-accept-charset> ;
    rdfhtml:valueSyntaxSource <https://infra.spec.whatwg.org/#ascii-case-insensitive> ;
    dcterms:description "Character encodings to use for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-accesskey-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:accessKey ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Ordered set of unique space-separated tokens, none of which are identical to another, each consisting of one code point in length" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#the-accesskey-attribute> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens> ;
    rdfhtml:valueSyntaxSource <https://infra.spec.whatwg.org/#string-is> ;
    dcterms:description "Keyboard shortcut to activate or focus element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-action-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:action ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "Valid non-empty URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-action> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-non-empty-url-potentially-surrounded-by-spaces> ;
    dcterms:description "URL to use for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-allow-iframe
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:allow ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Iframe ;
    rdfhtml:valueSyntaxText "Serialized permissions policy" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-allow> ;
    rdfhtml:valueSyntaxSource <https://w3c.github.io/webappsec-feature-policy/#serialized-permissions-policy> ;
    dcterms:description "Permissions policy to be applied to the iframe's contents"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-allowfullscreen-iframe
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:allowFullscreen ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Iframe ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-allowfullscreen> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether to allow the iframe's contents to use requestFullscreen()"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-alpha-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:alpha ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-alpha> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Allow the color's alpha component to be set"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-alt-area-img-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:alt ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Area,
        rdfhtml:Img,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-alt> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-alt> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-alt> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Replacement text for use when images are not available"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-as-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:as ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Preload destination, for rel=\"preload\"; module preload destination, for rel=\"modulepreload\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-as> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/links.html#link-type-modulepreload> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/links.html#link-type-preload> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/links.html#module-preload-destination> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/links.html#preload-destination> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-rel> ;
    dcterms:description "Destination for a preload request (for rel=\"preload\" and rel=\"modulepreload\")"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-async-script
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:async ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Script ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-async> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Execute script when available, without blocking while fetching"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-autocapitalize-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:autocapitalize ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"on\"; \"off\"; \"none\"; \"sentences\"; \"words\"; \"characters\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocapitalize> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocapitalize-characters> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocapitalize-none> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocapitalize-off> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocapitalize-on> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocapitalize-sentences> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocapitalize-words> ;
    dcterms:description "Recommended autocapitalization behavior (for supported input methods)"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-autocomplete-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:autocomplete ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "\"on\"; \"off\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/forms.html#attr-form-autocomplete> ;
    dcterms:description "Default setting for autofill feature for controls in the form"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-autocomplete-input-select-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:autocomplete ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Select,
        rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Autofill field name and related tokens*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-autocomplete> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#autofill-field> ;
    dcterms:description "Hint for form autofill feature"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-autocorrect-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:autocorrect ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"on\"; \"off\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocorrect> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocorrect-off> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-autocorrect-on> ;
    dcterms:description "Recommended autocorrection behavior (for supported input methods)"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-autofocus-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:autofocus ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-fe-autofocus> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Automatically focus the element when the page is loaded"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-autoplay-audio-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:autoplay ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-autoplay> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Hint that the media resource can be started automatically when the page is loaded"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-blocking-link-script-style
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:blocking ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link,
        rdfhtml:Script,
        rdfhtml:Style ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-blocking> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-blocking> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-style-blocking> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    dcterms:description "Whether the element is potentially render-blocking"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-charset-meta
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:charset ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meta ;
    rdfhtml:valueSyntaxText "\"utf-8\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-charset> ;
    dcterms:description "Character encoding declaration"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-checked-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:checked ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-checked> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the control is checked"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-cite-blockquote-del-ins-q
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:cite ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Blockquote,
        rdfhtml:Del,
        rdfhtml:Ins,
        rdfhtml:Q ;
    rdfhtml:valueSyntaxText "Valid URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/edits.html#attr-mod-cite> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-blockquote-cite> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/text-level-semantics.html#attr-q-cite> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Link to the source of the quotation or more information about the edit"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-class-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:class ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Set of space-separated tokens" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#classes> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#set-of-space-separated-tokens> ;
    dcterms:description "Classes to which the element belongs"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-closedby-dialog
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:closedBy ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Dialog ;
    rdfhtml:valueSyntaxText "\"any\"; \"closerequest\"; \"none\";" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-closedby> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-closedby-any> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-closedby-closerequest> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-closedby-none> ;
    dcterms:description "Which user actions will close the dialog"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-color-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:color ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "CSS <color>" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-color> ;
    rdfhtml:valueSyntaxSource <https://drafts.csswg.org/css-color/#typedef-color> ;
    dcterms:description "Color to use when customizing a site's icon (for rel=\"mask-icon\")"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-colorspace-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:colorspace ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "\"limited-srgb\"; \"display-p3\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-colorspace> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-colorspace-display-p3> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-colorspace-limited-srgb> ;
    dcterms:description "The color space of the serialized color"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-cols-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:cols ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Valid non-negative integer greater than zero" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-cols> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Maximum number of characters per line"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-colspan-td-th
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:colSpan ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Td,
        rdfhtml:Th ;
    rdfhtml:valueSyntaxText "Valid non-negative integer greater than zero" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-colspan> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Number of columns that the cell is to span"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-command-button
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:command ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button ;
    rdfhtml:valueSyntaxText "\"toggle-popover\"; \"show-popover\"; \"hide-popover\"; \"close\"; \"request-close\"; \"show-modal\"; a custom command keyword" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command-close> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command-custom> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command-hide-popover> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command-request-close> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command-show-modal> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command-show-popover> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-command-toggle-popover> ;
    dcterms:description "Indicates to the targeted element which action to take."@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-commandfor-button
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:commandfor ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button ;
    rdfhtml:valueSyntaxText "ID*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-commandfor> ;
    rdfhtml:valueSyntaxSource <https://dom.spec.whatwg.org/#concept-id> ;
    dcterms:description "Targets another element to be invoked."@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-content-meta
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:content ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meta ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-content> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Value of the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-contenteditable-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:contenteditable ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"true\"; \"false\"; \"plaintext-only\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-contenteditable> ;
    dcterms:description "Whether the element is editable"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-controls-audio-img-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:controls ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Img,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-controls> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-controls> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Show user agent controls"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-coords-area
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:coords ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Area ;
    rdfhtml:valueSyntaxText "Valid list of floating-point numbers*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-coords> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-list-of-floating-point-numbers> ;
    dcterms:description "Coordinates for the shape to be created in an image map"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-crossorigin-audio-img-link-script-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:crossorigin ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Img,
        rdfhtml:Link,
        rdfhtml:Script,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "\"anonymous\"; \"use-credentials\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-crossorigin> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-crossorigin> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-crossorigin> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-crossorigin> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-crossorigin-anonymous-keyword> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-crossorigin-use-credentials-keyword> ;
    dcterms:description "How the element handles crossorigin requests"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-data-object
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:dataAttribute ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Object ;
    rdfhtml:valueSyntaxText "Valid non-empty URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-object-data> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-non-empty-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Address of the resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-datetime-del-ins
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:dateTime ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Del,
        rdfhtml:Ins ;
    rdfhtml:valueSyntaxText "Valid date string with optional time" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/edits.html#attr-mod-datetime> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-string-with-optional-time> ;
    dcterms:description "Date and (optionally) time of the change"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-datetime-time
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:dateTime ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Time ;
    rdfhtml:valueSyntaxText "Valid month string, valid date string, valid yearless date string, valid time string, valid local date and time string, valid time-zone offset string, valid global date and time string, valid week string, valid non-negative integer, or valid duration string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/text-level-semantics.html#attr-time-datetime> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-date-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-duration-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-global-date-and-time-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-local-date-and-time-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-month-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-time-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-time-zone-offset-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-week-string> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-yearless-date-string> ;
    dcterms:description "Machine-readable value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-decoding-img
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:decoding ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Img ;
    rdfhtml:valueSyntaxText "\"sync\"; \"async\"; \"auto\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-decoding> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/images.html#attr-img-decoding-async> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/images.html#attr-img-decoding-auto> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/images.html#attr-img-decoding-sync> ;
    dcterms:description "Decoding hint to use when processing this image for presentation"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-default-track
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:default ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Track ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-default> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Enable the track if no other text track is more suitable"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-defer-script
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:defer ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Script ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-defer> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Defer script execution"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-dir-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:dir ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"ltr\"; \"rtl\"; \"auto\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#attr-dir> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attr-dir-auto> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attr-dir-ltr> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attr-dir-rtl> ;
    dcterms:description "The text directionality of the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-dir-bdo
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:dir ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Bdo ;
    rdfhtml:valueSyntaxText "\"ltr\"; \"rtl\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-bdo-element> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attr-dir-ltr> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attr-dir-rtl> ;
    dcterms:description "The text directionality of the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-dirname-input-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:dirName ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-dirname> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Name of form control to use for sending the element's directionality in form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-disabled-button-input-optgroup-option-select-textarea-form-associated-custom-elements
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:disabled ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input,
        rdfhtml:Optgroup,
        rdfhtml:Option,
        rdfhtml:Select,
        rdfhtml:Textarea ;
    rdfhtml:applicableParticipant "form-associated-custom-elements" ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-disabled> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-optgroup-disabled> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-option-disabled> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the form control is disabled"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-disabled-fieldset
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:disabled ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Fieldset ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-fieldset-disabled> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the descendant form controls, except any inside legend, are disabled"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-disabled-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:disabled ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-disabled> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the link is disabled"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-download-a-area
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:download ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Area ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-download> ;
    dcterms:description "Whether to download the resource instead of navigating to it, and its filename if so"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-draggable-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:draggable ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"true\"; \"false\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dnd.html#attr-draggable> ;
    dcterms:description "Whether the element is draggable"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-enctype-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:enctype ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "\"application/x-www-form-urlencoded\"; \"multipart/form-data\"; \"text/plain\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-enctype> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-enctype-formdata> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-enctype-text> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-enctype-urlencoded> ;
    dcterms:description "Entry list encoding type to use for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-enterkeyhint-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:enterkeyhint ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"enter\"; \"done\"; \"go\"; \"next\"; \"previous\"; \"search\"; \"send\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-done> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-enter> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-go> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-next> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-previous> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-search> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-enterkeyhint-keyword-send> ;
    dcterms:description "Hint for selecting an enter key action"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-fetchpriority-img-link-script
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:fetchpriority ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Img,
        rdfhtml:Link,
        rdfhtml:Script ;
    rdfhtml:valueSyntaxText "\"auto\"; \"high\"; \"low\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-fetchpriority> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-fetchpriority> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-fetchpriority> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-fetchpriority-auto> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-fetchpriority-high> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-fetchpriority-low> ;
    dcterms:description "Sets the priority for fetches initiated by the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-for-label
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:for ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Label ;
    rdfhtml:valueSyntaxText "ID*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/forms.html#attr-label-for> ;
    rdfhtml:valueSyntaxSource <https://dom.spec.whatwg.org/#concept-id> ;
    dcterms:description "Associate the label with form control"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-for-output
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:for ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Output ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens consisting of IDs*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-output-for> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    dcterms:description "Specifies controls from which the output was calculated"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-form-button-fieldset-input-object-output-select-textarea-form-associated-custom-elements
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:form ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Fieldset,
        rdfhtml:Input,
        rdfhtml:Object,
        rdfhtml:Output,
        rdfhtml:Select,
        rdfhtml:Textarea ;
    rdfhtml:applicableParticipant "form-associated-custom-elements" ;
    rdfhtml:valueSyntaxText "ID*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fae-form> ;
    rdfhtml:valueSyntaxSource <https://dom.spec.whatwg.org/#concept-id> ;
    dcterms:description "Associates the element with a form element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-formaction-button-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:formAction ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Valid non-empty URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-formaction> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-non-empty-url-potentially-surrounded-by-spaces> ;
    dcterms:description "URL to use for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-formenctype-button-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:formenctype ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "\"application/x-www-form-urlencoded\"; \"multipart/form-data\"; \"text/plain\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-formenctype> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-enctype-formdata> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-enctype-text> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-enctype-urlencoded> ;
    dcterms:description "Entry list encoding type to use for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-formmethod-button-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:formmethod ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "\"get\"; \"post\"; \"dialog\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-formmethod> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method-dialog-keyword> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method-get-keyword> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method-post-keyword> ;
    dcterms:description "Variant to use for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-formnovalidate-button-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:formNoValidate ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-formnovalidate> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Bypass form control validation for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-formtarget-button-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:formTarget ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Valid navigable target name or keyword" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-formtarget> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/document-sequences.html#valid-navigable-target-name-or-keyword> ;
    dcterms:description "Navigable for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-headers-td-th
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:headers ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Td,
        rdfhtml:Th ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens consisting of IDs*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-headers> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    dcterms:description "The header cells for this cell"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-headingoffset-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:headingOffset ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Valid non-negative integer between 0 and 8" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Offsets heading levels for descendants"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-headingreset-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:headingReset ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Prevents a heading offset computation from traversing beyond the element with the attribute"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-height-canvas-embed-iframe-img-input-object-source-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:height ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Canvas,
        rdfhtml:Embed,
        rdfhtml:Iframe,
        rdfhtml:Img,
        rdfhtml:Input,
        rdfhtml:Object,
        rdfhtml:Source,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Valid non-negative integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/canvas.html#attr-canvas-height> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content-other.html#attr-dim-height> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Vertical dimension"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-hidden-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:hidden ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"until-found\"; \"hidden\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-until-found> ;
    dcterms:description "Whether the element is relevant"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-high-meter
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:high ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meter ;
    rdfhtml:valueSyntaxText "Valid floating-point number*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-high> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number> ;
    dcterms:description "Low limit of high range"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-href-a-area
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:href ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Area ;
    rdfhtml:valueSyntaxText "Valid URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-href> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Address of the hyperlink"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-href-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:href ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Valid non-empty URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-href> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-non-empty-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Address of the hyperlink"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-href-base
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:href ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Base ;
    rdfhtml:valueSyntaxText "Valid URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-base-href> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Document base URL"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-hreflang-a-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:hreflang ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Valid BCP 47 language tag" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-hreflang> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-hreflang> ;
    dcterms:description "Language of the linked resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-http-equiv-meta
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:httpEquiv ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meta ;
    rdfhtml:valueSyntaxText "\"content-type\"; \"default-style\"; \"refresh\"; \"x-ua-compatible\"; \"content-security-policy\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-keyword-content-security-policy> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-keyword-content-type> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-keyword-default-style> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-keyword-refresh> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-keyword-x-ua-compatible> ;
    dcterms:description "Pragma directive"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-id-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:id ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#the-id-attribute> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "The element's ID"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-imagesizes-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:imageSizes ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Valid source size list" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-imagesizes> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/images.html#valid-source-size-list> ;
    dcterms:description "Image sizes for different page layouts (for rel=\"preload\")"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-imagesrcset-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:imageSrcset ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Comma-separated list of image candidate strings" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-imagesrcset> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/images.html#image-candidate-string> ;
    dcterms:description "Images to use in different situations, e.g., high-resolution displays, small monitors, etc. (for rel=\"preload\")"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-inert-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:inert ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#the-inert-attribute> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the element is inert."@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-inputmode-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:inputmode ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"none\"; \"text\"; \"tel\"; \"email\"; \"url\"; \"numeric\"; \"decimal\"; \"search\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-decimal> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-email> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-none> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-numeric> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-search> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-tel> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-text> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-inputmode-keyword-url> ;
    dcterms:description "Hint for selecting an input modality"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-integrity-link-script
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:integrity ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link,
        rdfhtml:Script ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-integrity> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-integrity> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Integrity metadata used in Subresource Integrity checks [SRI]"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-is-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:is ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Valid custom element name of a defined customized built-in element" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/custom-elements.html#customized-built-in-element> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/custom-elements.html#valid-custom-element-name> ;
    dcterms:description "Creates a customized built-in element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-ismap-img
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:isMap ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Img ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-ismap> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the image is a server-side image map"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-itemid-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:itemid ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Valid URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/microdata.html#attr-itemid> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Global identifier for a microdata item"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-itemprop-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:itemprop ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens consisting of valid absolute URLs, defined property names, or text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/microdata.html#names:-the-itemprop-attribute> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/microdata.html#defined-property-name> ;
    rdfhtml:valueSyntaxSource <https://url.spec.whatwg.org/#syntax-url-absolute> ;
    dcterms:description "Property names of a microdata item"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-itemref-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:itemref ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens consisting of IDs*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/microdata.html#attr-itemref> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    dcterms:description "Referenced elements"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-itemscope-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:itemscope ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/microdata.html#attr-itemscope> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Introduces a microdata item"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-itemtype-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:itemtype ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens consisting of valid absolute URLs*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/microdata.html#attr-itemtype> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    rdfhtml:valueSyntaxSource <https://url.spec.whatwg.org/#syntax-url-absolute> ;
    dcterms:description "Item types of a microdata item"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-kind-track
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:kind ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Track ;
    rdfhtml:valueSyntaxText "\"subtitles\"; \"captions\"; \"descriptions\"; \"chapters\"; \"metadata\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-kind> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-kind-keyword-captions> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-kind-keyword-chapters> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-kind-keyword-descriptions> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-kind-keyword-metadata> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-kind-keyword-subtitles> ;
    dcterms:description "The type of text track"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-label-optgroup-option-track
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:label ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Optgroup,
        rdfhtml:Option,
        rdfhtml:Track ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-optgroup-label> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-option-label> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-label> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "User-visible label"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-lang-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:lang ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Valid BCP 47 language tag or the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#attr-lang> ;
    dcterms:description "Language of the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-list-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:list ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "ID*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-list> ;
    rdfhtml:valueSyntaxSource <https://dom.spec.whatwg.org/#concept-id> ;
    dcterms:description "List of autocomplete options"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-loading-audio-iframe-img-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:loading ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Iframe,
        rdfhtml:Img,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "\"lazy\"; \"eager\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-loading> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-loading> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-loading> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-loading-eager> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-loading-lazy> ;
    dcterms:description "Used when determining loading deferral"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-loop-audio-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:loop ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-loop> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether to loop the media resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-low-meter
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:low ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meter ;
    rdfhtml:valueSyntaxText "Valid floating-point number*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-low> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number> ;
    dcterms:description "High limit of low range"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-max-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:max ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Varies*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-max> ;
    dcterms:description "Maximum value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-max-meter-progress
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:max ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meter,
        rdfhtml:Progress ;
    rdfhtml:valueSyntaxText "Valid floating-point number*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-max> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-progress-max> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number> ;
    dcterms:description "Upper bound of range"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-maxlength-input-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:maxLength ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Valid non-negative integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-maxlength> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-maxlength> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Maximum length of value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-media-link-meta-source-style
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:media ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link,
        rdfhtml:Meta,
        rdfhtml:Source,
        rdfhtml:Style ;
    rdfhtml:valueSyntaxText "Valid media query list" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-source-media> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-media> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-media> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-style-media> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-media-query-list> ;
    dcterms:description "Applicable media"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-method-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:method ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "\"get\"; \"post\"; \"dialog\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method-dialog-keyword> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method-get-keyword> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-method-post-keyword> ;
    dcterms:description "Variant to use for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-min-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:min ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Varies*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-min> ;
    dcterms:description "Minimum value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-min-meter
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:min ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meter ;
    rdfhtml:valueSyntaxText "Valid floating-point number*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-min> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number> ;
    dcterms:description "Lower bound of range"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-minlength-input-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:minLength ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Valid non-negative integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-minlength> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-minlength> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Minimum length of value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-multiple-input-select
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:multiple ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Select ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-select-multiple> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-multiple> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether to allow multiple values"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-muted-audio-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:muted ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-muted> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether to mute the media resource by default"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-name-button-fieldset-input-output-select-textarea-form-associated-custom-elements
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:name ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Fieldset,
        rdfhtml:Input,
        rdfhtml:Output,
        rdfhtml:Select,
        rdfhtml:Textarea ;
    rdfhtml:applicableParticipant "form-associated-custom-elements" ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fe-name> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Name of the element to use for form submission and in the form.elements API"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-name-details
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:name ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Details ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-details-name> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Name of group of mutually-exclusive details elements"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-name-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:name ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/forms.html#attr-form-name> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Name of form to use in the document.forms API"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-name-iframe-object
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:name ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Iframe,
        rdfhtml:Object ;
    rdfhtml:valueSyntaxText "Valid navigable target name or keyword" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-name> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-object-name> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/document-sequences.html#valid-navigable-target-name-or-keyword> ;
    dcterms:description "Name of content navigable"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-name-map
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:name ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Map ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-map-name> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Name of image map to reference from the usemap attribute"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-name-meta
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:name ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meta ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-name> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Metadata name"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-name-slot
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:name ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Slot ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-slot-name> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Name of shadow tree slot"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-nomodule-script
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:noModule ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Script ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-nomodule> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Prevents execution in user agents that support module scripts"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-nonce-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:nonce ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#attr-nonce> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Cryptographic nonce used in Content Security Policy checks [CSP]"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-novalidate-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:noValidate ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-novalidate> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Bypass form control validation for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-open-details
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:open ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Details ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-details-open> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the details are visible"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-open-dialog
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:open ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Dialog ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-dialog-open> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the dialog box is showing"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-optimum-meter
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:optimum ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meter ;
    rdfhtml:valueSyntaxText "Valid floating-point number*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-optimum> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number> ;
    dcterms:description "Optimum value in gauge"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-pattern-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:pattern ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Regular expression matching the JavaScript Pattern production" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-pattern> ;
    rdfhtml:valueSyntaxSource <https://tc39.es/ecma262/#prod-Pattern> ;
    dcterms:description "Pattern to be matched by the form control's value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-ping-a-area
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:ping ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Area ;
    rdfhtml:valueSyntaxText "Set of space-separated tokens consisting of valid non-empty URLs" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#ping> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#set-of-space-separated-tokens> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-non-empty-url> ;
    dcterms:description "URLs to ping"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-placeholder-input-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:placeholder ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-placeholder> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-placeholder> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "User-visible label to be placed within the form control"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-playsinline-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:playsInline ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-video-playsinline> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Encourage the user agent to display video content within the element's playback area"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-popover-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:popover ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"auto\"; \"manual\"; \"hint\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popover> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popover-auto> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popover-hint> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popover-manual> ;
    dcterms:description "Makes the element a popover element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-popovertarget-button-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:popovertarget ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "ID*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popovertarget> ;
    rdfhtml:valueSyntaxSource <https://dom.spec.whatwg.org/#concept-id> ;
    dcterms:description "Targets a popover element to toggle, show, or hide"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-popovertargetaction-button-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:popovertargetaction ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Input ;
    rdfhtml:valueSyntaxText "\"toggle\"; \"show\"; \"hide\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-hide> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-show> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/popover.html#attr-popovertargetaction-toggle> ;
    dcterms:description "Indicates whether a targeted popover element is to be toggled, shown, or hidden"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-poster-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:poster ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Valid non-empty URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-video-poster> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-non-empty-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Poster frame to show prior to video playback"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-preload-audio-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:preload ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "\"none\"; \"metadata\"; \"auto\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-preload> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-preload-auto> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-preload-metadata> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-preload-none> ;
    dcterms:description "Hints how much buffering the media resource will likely need"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-readonly-input-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:readOnly ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-readonly> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-readonly> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether to allow the value to be edited by the user"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-readonly-form-associated-custom-elements
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:readOnly ;
    rdfhtml:globalAttribute false ;
    rdfhtml:applicableParticipant "form-associated-custom-elements" ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Affects willValidate, plus any behavior added by the custom element author"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-referrerpolicy-a-area-iframe-img-link-script
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:referrerpolicy ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Area,
        rdfhtml:Iframe,
        rdfhtml:Img,
        rdfhtml:Link,
        rdfhtml:Script ;
    rdfhtml:valueSyntaxText "Referrer policy" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-referrerpolicy> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-referrerpolicy> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-referrerpolicy> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-referrerpolicy> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-referrerpolicy> ;
    rdfhtml:valueSyntaxSource <https://w3c.github.io/webappsec-referrer-policy/#referrer-policy> ;
    dcterms:description "Referrer policy for fetches initiated by the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-rel-a-area
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:rel ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Area ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-rel> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    dcterms:description "Relationship between the location in the document containing the hyperlink and the destination resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-rel-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:rel ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-rel> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    dcterms:description "Relationship between the document containing the hyperlink and the destination resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-required-input-select-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:required ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Select,
        rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-select-required> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-required> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-required> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the control is required for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-reversed-ol
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:reversed ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Ol ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-reversed> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Number the list backwards"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-rows-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:rows ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "Valid non-negative integer greater than zero" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-rows> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Number of lines to show"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-rowspan-td-th
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:rowSpan ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Td,
        rdfhtml:Th ;
    rdfhtml:valueSyntaxText "Valid non-negative integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/tables.html#attr-tdth-rowspan> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Number of rows that the cell is to span"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-sandbox-iframe
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:sandbox ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Iframe ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of \"allow-downloads\"\"allow-forms\"\"allow-modals\"\"allow-orientation-lock\"\"allow-pointer-lock\"\"allow-popups\"\"allow-popups-to-escape-sandbox\"\"allow-presentation\"\"allow-same-origin\"\"allow-scripts\"\"allow-top-navigation\"\"allow-top-navigation-by-user-activation\"\"allow-top-navigation-to-custom-protocols\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-sandbox> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-downloads> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-forms> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-modals> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-orientation-lock> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-pointer-lock> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-popups> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-popups-to-escape-sandbox> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-presentation> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-same-origin> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-scripts> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-top-navigation> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-top-navigation-by-user-activation> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/browsers.html#attr-iframe-sandbox-allow-top-navigation-to-custom-protocols> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    rdfhtml:valueSyntaxSource <https://infra.spec.whatwg.org/#ascii-case-insensitive> ;
    dcterms:description "Security rules for nested content"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-scope-th
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:scope ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Th ;
    rdfhtml:valueSyntaxText "\"row\"; \"col\"; \"rowgroup\"; \"colgroup\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-col> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-colgroup> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-row> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/tables.html#attr-th-scope-rowgroup> ;
    dcterms:description "Specifies which cells the header cell applies to"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-selected-option
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:selected ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Option ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-option-selected> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Whether the option is selected by default"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-shadowrootclonable-template
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:shadowRootClonable ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Template ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootclonable> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Sets clonable on a declarative shadow root"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-shadowrootcustomelementregistry-template
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:shadowRootCustomElementRegistry ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Template ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootcustomelementregistry> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Enables declarative shadow roots to indicate they will use a custom element registry"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-shadowrootdelegatesfocus-template
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:shadowRootDelegatesFocus ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Template ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootdelegatesfocus> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Sets delegates focus on a declarative shadow root"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-shadowrootmode-template
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:shadowrootmode ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Template ;
    rdfhtml:valueSyntaxText "\"open\"; \"closed\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootmode> ;
    dcterms:description "Enables streaming declarative shadow roots"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-shadowrootserializable-template
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:shadowRootSerializable ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Template ;
    rdfhtml:valueSyntaxText "Boolean attribute" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootserializable> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#boolean-attribute> ;
    dcterms:description "Sets serializable on a declarative shadow root"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-shadowrootslotassignment-template
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:shadowrootslotassignment ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Template ;
    rdfhtml:valueSyntaxText "\"named\"; \"manual\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-template-shadowrootslotassignment> ;
    dcterms:description "Sets slot assignment on a declarative shadow root"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-shape-area
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:shape ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Area ;
    rdfhtml:valueSyntaxText "\"circle\"; \"default\"; \"poly\"; \"rect\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-shape> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-shape-keyword-circle> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-shape-keyword-default> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-shape-keyword-poly> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-area-shape-keyword-rect> ;
    dcterms:description "The kind of shape to be created in an image map"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-size-input-select
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:size ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input,
        rdfhtml:Select ;
    rdfhtml:valueSyntaxText "Valid non-negative integer greater than zero" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-select-size> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-size> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Size of the control"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-sizes-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:sizes ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of sizes*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-sizes> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens> ;
    rdfhtml:valueSyntaxSource <https://infra.spec.whatwg.org/#ascii-case-insensitive> ;
    dcterms:description "Sizes of the icons (for rel=\"icon\")"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-sizes-img-source
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:sizes ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Img,
        rdfhtml:Source ;
    rdfhtml:valueSyntaxText "Valid source size list" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-sizes> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-source-sizes> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/images.html#valid-source-size-list> ;
    dcterms:description "Image sizes for different page layouts"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-slot-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:slot ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#the-id-attribute> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "The element's desired slot"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-span-col-colgroup
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:span ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Col,
        rdfhtml:Colgroup ;
    rdfhtml:valueSyntaxText "Valid non-negative integer greater than zero" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/tables.html#attr-col-span> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/tables.html#attr-colgroup-span> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Number of columns spanned by the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-spellcheck-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:spellcheck ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"true\"; \"false\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-false> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-spellcheck-true> ;
    dcterms:description "Whether the element is to have its spelling and grammar checked"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-src-audio-embed-iframe-img-input-script-source-track-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:src ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Audio,
        rdfhtml:Embed,
        rdfhtml:Iframe,
        rdfhtml:Img,
        rdfhtml:Input,
        rdfhtml:Script,
        rdfhtml:Source,
        rdfhtml:Track,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Valid non-empty URL potentially surrounded by spaces" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-src> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-source-src> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-embed-src> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-src> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-src> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-media-src> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-src> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-src> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/urls-and-fetching.html#valid-non-empty-url-potentially-surrounded-by-spaces> ;
    dcterms:description "Address of the resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-srcdoc-iframe
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:srcdoc ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Iframe ;
    rdfhtml:valueSyntaxText "The source of an iframe srcdoc document*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-iframe-srcdoc> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#an-iframe-srcdoc-document> ;
    dcterms:description "A document to render in the iframe"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-srclang-track
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:srclang ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Track ;
    rdfhtml:valueSyntaxText "Valid BCP 47 language tag" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/media.html#attr-track-srclang> ;
    dcterms:description "Language of the text track"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-srcset-img-source
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:srcset ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Img,
        rdfhtml:Source ;
    rdfhtml:valueSyntaxText "Comma-separated list of image candidate strings" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-srcset> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-source-srcset> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/images.html#image-candidate-string> ;
    dcterms:description "Images to use in different situations, e.g., high-resolution displays, small monitors, etc."@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-start-ol
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:start ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Ol ;
    rdfhtml:valueSyntaxText "Valid integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-start> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-integer> ;
    dcterms:description "Starting value of the list"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-step-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:step ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Valid floating-point number greater than zero, or \"any\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-step> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number> ;
    dcterms:description "Granularity to be matched by the form control's value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-style-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:style ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "CSS declarations*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#attr-style> ;
    dcterms:description "Presentational and formatting instructions"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-tabindex-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:tabIndex ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Valid integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-tabindex> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-integer> ;
    dcterms:description "Whether the element is focusable and sequentially focusable, and the relative order of the element for the purposes of sequential focus navigation"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-target-a-area
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:target ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Area ;
    rdfhtml:valueSyntaxText "Valid navigable target name or keyword" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-target> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/document-sequences.html#valid-navigable-target-name-or-keyword> ;
    dcterms:description "Navigable for hyperlink navigation"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-target-base
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:target ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Base ;
    rdfhtml:valueSyntaxText "Valid navigable target name or keyword" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-base-target> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/document-sequences.html#valid-navigable-target-name-or-keyword> ;
    dcterms:description "Default navigable for hyperlink navigation and form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-target-form
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:target ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Form ;
    rdfhtml:valueSyntaxText "Valid navigable target name or keyword" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#attr-fs-target> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/document-sequences.html#valid-navigable-target-name-or-keyword> ;
    dcterms:description "Navigable for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-title-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:title ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#attr-title> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Advisory information for the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-title-abbr-dfn
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:title ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Abbr,
        rdfhtml:Dfn ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/text-level-semantics.html#attr-abbr-title> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/text-level-semantics.html#attr-dfn-title> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Full term or expansion of abbreviation"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-title-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:title ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-title> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Description of pattern (when used with pattern attribute)"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-title-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:title ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-title> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Title of the link"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-title-link-style
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:title ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Link,
        rdfhtml:Style ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-title> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-style-title> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "CSS style sheet set name"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-translate-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:translate ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"yes\"; \"no\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/dom.html#attr-translate> ;
    dcterms:description "Whether the element is to be translated when the page is localized"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-type-a-link
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:type ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:A,
        rdfhtml:Link ;
    rdfhtml:valueSyntaxText "Valid MIME type string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-type> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/semantics.html#attr-link-type> ;
    rdfhtml:valueSyntaxSource <https://mimesniff.spec.whatwg.org/#valid-mime-type> ;
    dcterms:description "Hint for the type of the referenced resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-type-button
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:type ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button ;
    rdfhtml:valueSyntaxText "\"submit\"; \"reset\"; \"button\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type-button> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type-reset> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type-submit> ;
    dcterms:description "Type of button"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-type-embed-object-source
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:type ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Embed,
        rdfhtml:Object,
        rdfhtml:Source ;
    rdfhtml:valueSyntaxText "Valid MIME type string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content.html#attr-source-type> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-embed-type> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-object-type> ;
    rdfhtml:valueSyntaxSource <https://mimesniff.spec.whatwg.org/#valid-mime-type> ;
    dcterms:description "Type of embedded resource"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-type-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:type ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "input type keyword" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-type> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-type> ;
    dcterms:description "Type of form control"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-type-ol
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:type ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Ol ;
    rdfhtml:valueSyntaxText "\"1\"; \"a\"; \"A\"; \"i\"; \"I\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type-keyword-decimal> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type-keyword-lower-alpha> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type-keyword-lower-roman> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type-keyword-upper-alpha> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-ol-type-keyword-upper-roman> ;
    dcterms:description "Kind of list marker"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-type-script
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:type ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Script ;
    rdfhtml:valueSyntaxText "\"module\"; \"importmap\"; \"speculationrules\"; a valid MIME type string that is not a JavaScript MIME type essence match" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/scripting.html#attr-script-type> ;
    rdfhtml:valueSyntaxSource <https://mimesniff.spec.whatwg.org/#javascript-mime-type-essence-match> ;
    rdfhtml:valueSyntaxSource <https://mimesniff.spec.whatwg.org/#valid-mime-type> ;
    dcterms:description "Type of script"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-usemap-img
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:useMap ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Img ;
    rdfhtml:valueSyntaxText "Valid hash-name reference*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/image-maps.html#attr-hyperlink-usemap> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-hash-name-reference> ;
    dcterms:description "Name of image map to use"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-value-button-option
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:value ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Button,
        rdfhtml:Option ;
    rdfhtml:valueSyntaxText "Text" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-value> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-option-value> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Value to be used for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-value-data
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:value ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Data ;
    rdfhtml:valueSyntaxText "Text*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/text-level-semantics.html#attr-data-value> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/dom.html#attribute-text> ;
    dcterms:description "Machine-readable value"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-value-input
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:value ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Input ;
    rdfhtml:valueSyntaxText "Varies*" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/input.html#attr-input-value> ;
    dcterms:description "Value of the form control"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-value-li
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:value ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Li ;
    rdfhtml:valueSyntaxText "Valid integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/grouping-content.html#attr-li-value> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-integer> ;
    dcterms:description "Ordinal value of the list item"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-value-meter-progress
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:value ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Meter,
        rdfhtml:Progress ;
    rdfhtml:valueSyntaxText "Valid floating-point number" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-meter-value> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-progress-value> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-floating-point-number> ;
    dcterms:description "Current value of the element"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-width-canvas-embed-iframe-img-input-object-source-video
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:width ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Canvas,
        rdfhtml:Embed,
        rdfhtml:Iframe,
        rdfhtml:Img,
        rdfhtml:Input,
        rdfhtml:Object,
        rdfhtml:Source,
        rdfhtml:Video ;
    rdfhtml:valueSyntaxText "Valid non-negative integer" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/canvas.html#attr-canvas-width> ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/embedded-content-other.html#attr-dim-width> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#valid-non-negative-integer> ;
    dcterms:description "Horizontal dimension"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-wrap-textarea
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:wrap ;
    rdfhtml:globalAttribute false ;
    rdfhtml:appliesTo rdfhtml:Textarea ;
    rdfhtml:valueSyntaxText "\"soft\"; \"hard\"" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-wrap> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-wrap-hard> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/form-elements.html#attr-textarea-wrap-soft> ;
    dcterms:description "How the value of the form control is to be wrapped for form submission"@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:attribute-context-writingsuggestions-global
    a rdfhtml:AttributeContext ;
    rdfhtml:attributeDefinition rdfhtml:writingSuggestions ;
    rdfhtml:globalAttribute true ;
    rdfhtml:appliesTo rdfhtml:Element ;
    rdfhtml:valueSyntaxText "\"true\"; \"false\"; the empty string" ;
    rdfhtml:definitionSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-false> ;
    rdfhtml:valueSyntaxSource <https://html.spec.whatwg.org/multipage/interaction.html#attr-writingsuggestions-true> ;
    dcterms:description "Whether the element can offer writing suggestions or not."@en ;
    dcterms:source <https://html.spec.whatwg.org/multipage/indices.html#attributes-3> .

rdfhtml:condition-interactive-a
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "interactive-a" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:A ;
    rdfhtml:category rdfhtml:InteractiveContent ;
    rdfhtml:conditionText "if the href attribute is present" ;
    rdfhtml:indexNotation "a (if the href attribute is present)" .

rdfhtml:condition-flow-area
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "flow-area" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#flow-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Area ;
    rdfhtml:category rdfhtml:FlowContent ;
    rdfhtml:conditionText "if it is a descendant of a map element" ;
    rdfhtml:indexNotation "area (if it is a descendant of a map element)" .

rdfhtml:condition-phrasing-area
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "phrasing-area" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#phrasing-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Area ;
    rdfhtml:category rdfhtml:PhrasingContent ;
    rdfhtml:conditionText "if it is a descendant of a map element" ;
    rdfhtml:indexNotation "area (if it is a descendant of a map element)" .

rdfhtml:condition-interactive-audio
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "interactive-audio" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Audio ;
    rdfhtml:category rdfhtml:InteractiveContent ;
    rdfhtml:conditionText "if the controls attribute is present" ;
    rdfhtml:indexNotation "audio (if the controls attribute is present)" .

rdfhtml:condition-palpable-audio
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "palpable-audio" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Audio ;
    rdfhtml:category rdfhtml:PalpableContent ;
    rdfhtml:conditionText "if the controls attribute is present" ;
    rdfhtml:indexNotation "audio (if the controls attribute is present)" .

rdfhtml:condition-palpable-dl
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "palpable-dl" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Dl ;
    rdfhtml:category rdfhtml:PalpableContent ;
    rdfhtml:conditionText "if the element's children include at least one name-value group" ;
    rdfhtml:indexNotation "dl (if the element's children include at least one name-value group)" .

rdfhtml:condition-interactive-img
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "interactive-img" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Img ;
    rdfhtml:category rdfhtml:InteractiveContent ;
    rdfhtml:conditionText "if the usemap or controls attribute is present" ;
    rdfhtml:indexNotation "img (if the usemap or controls attribute is present)" .

rdfhtml:condition-interactive-input
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "interactive-input" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Input ;
    rdfhtml:category rdfhtml:InteractiveContent ;
    rdfhtml:conditionText "if the type attribute is not in the Hidden state" ;
    rdfhtml:indexNotation "input (if the type attribute is not in the Hidden state)" .

rdfhtml:condition-palpable-input
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "palpable-input" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Input ;
    rdfhtml:category rdfhtml:PalpableContent ;
    rdfhtml:conditionText "if the type attribute is not in the Hidden state" ;
    rdfhtml:indexNotation "input (if the type attribute is not in the Hidden state)" .

rdfhtml:condition-flow-link
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "flow-link" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#flow-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Link ;
    rdfhtml:category rdfhtml:FlowContent ;
    rdfhtml:conditionText "if it is allowed in the body" ;
    rdfhtml:indexNotation "link (if it is allowed in the body)" .

rdfhtml:condition-phrasing-link
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "phrasing-link" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#phrasing-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Link ;
    rdfhtml:category rdfhtml:PhrasingContent ;
    rdfhtml:conditionText "if it is allowed in the body" ;
    rdfhtml:indexNotation "link (if it is allowed in the body)" .

rdfhtml:condition-flow-main
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "flow-main" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#flow-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Main ;
    rdfhtml:category rdfhtml:FlowContent ;
    rdfhtml:conditionText "if it is a hierarchically correct main element" ;
    rdfhtml:indexNotation "main (if it is a hierarchically correct main element)" .

rdfhtml:condition-palpable-menu
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "palpable-menu" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Menu ;
    rdfhtml:category rdfhtml:PalpableContent ;
    rdfhtml:conditionText "if the element's children include at least one li element" ;
    rdfhtml:indexNotation "menu (if the element's children include at least one li element)" .

rdfhtml:condition-flow-meta
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "flow-meta" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#flow-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Meta ;
    rdfhtml:category rdfhtml:FlowContent ;
    rdfhtml:conditionText "if the itemprop attribute is present" ;
    rdfhtml:indexNotation "meta (if the itemprop attribute is present)" .

rdfhtml:condition-phrasing-meta
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "phrasing-meta" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#phrasing-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Meta ;
    rdfhtml:category rdfhtml:PhrasingContent ;
    rdfhtml:conditionText "if the itemprop attribute is present" ;
    rdfhtml:indexNotation "meta (if the itemprop attribute is present)" .

rdfhtml:condition-interactive-object
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "interactive-object" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-object-element> ;
    rdfhtml:classifiedElementClass rdfhtml:Object ;
    rdfhtml:category rdfhtml:InteractiveContent ;
    rdfhtml:indexNotation "interactive*" .

rdfhtml:condition-palpable-ol
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "palpable-ol" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Ol ;
    rdfhtml:category rdfhtml:PalpableContent ;
    rdfhtml:conditionText "if the element's children include at least one li element" ;
    rdfhtml:indexNotation "ol (if the element's children include at least one li element)" .

rdfhtml:condition-interactive-th
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "interactive-th" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/tables.html#the-th-element> ;
    rdfhtml:classifiedElementClass rdfhtml:Th ;
    rdfhtml:category rdfhtml:InteractiveContent ;
    rdfhtml:indexNotation "interactive*" .

rdfhtml:condition-palpable-ul
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "palpable-ul" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Ul ;
    rdfhtml:category rdfhtml:PalpableContent ;
    rdfhtml:conditionText "if the element's children include at least one li element" ;
    rdfhtml:indexNotation "ul (if the element's children include at least one li element)" .

rdfhtml:condition-interactive-video
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "interactive-video" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#interactive-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Video ;
    rdfhtml:category rdfhtml:InteractiveContent ;
    rdfhtml:conditionText "if the controls attribute is present" ;
    rdfhtml:indexNotation "video (if the controls attribute is present)" .

rdfhtml:condition-palpable-text
    a rdfhtml:ConditionalCategoryMembership ;
    dcterms:identifier "palpable-text" ;
    dcterms:source <https://html.spec.whatwg.org/multipage/dom.html#palpable-content-2> ;
    rdfhtml:classifiedElementClass rdfhtml:Text ;
    rdfhtml:category rdfhtml:PalpableContent ;
    rdfhtml:conditionText "that is not inter-element whitespace" ;
    rdfhtml:indexNotation "Text that is not inter-element whitespace" .
