HTML 要素インターフェイスの全ては、このクラスから派生する。 HTML コア属性が出現するだけの要素は、 HTMLElement インターフェイスをもとに表現される。そのような要素は次のとおりである:
Note: HTML 要素の style 属性は、 CSS モジュール [DOM Level 2 Style Sheets and CSS] で定義される ElementCSSInlineStyle インターフェイスを通してアクセスできる。
classNamediridlangtitle
interface HTMLElement : Element {
           attribute DOMString       id;
           attribute DOMString       title;
           attribute DOMString       lang;
           attribute DOMString       dir;
           attribute DOMString       className;
};