</td>
<td>{{ HTMLElement("iframe") }}</td>
<td>
Specifies the Content Security Policy that an embedded document must
agree to enforce upon itself.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/object#data">data</a></code>
</td>
<td>{{ HTMLElement("object") }}</td>
<td>Specifies the URL of the resource.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/data-*">data-*</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>Lets you attach custom attributes to an HTML element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/datetime">datetime</a></code>
</td>
<td>
{{ HTMLElement("del") }}, {{ HTMLElement("ins") }},
{{ HTMLElement("time") }}
</td>
<td>Indicates the date and time associated with the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/img#decoding">decoding</a></code>
</td>
<td>{{ HTMLElement("img") }}</td>
<td>Indicates the preferred method to decode the image.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/track#default">default</a></code>
</td>
<td>{{ HTMLElement("track") }}</td>
<td>
Indicates that the track should be enabled unless the user's preferences
indicate something different.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/script#defer">defer</a></code>
</td>
<td>{{ HTMLElement("script") }}</td>
<td>
Indicates that the script should be executed after the page has been
parsed.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/dir">dir</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>
Defines the text direction. Allowed values are ltr (Left-To-Right) or
rtl (Right-To-Left)
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/dirname">dirname</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("textarea") }}
</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/disabled">disabled</a></code>
</td>
<td>
{{ HTMLElement("button") }},
{{ HTMLElement("fieldset") }},
{{ HTMLElement("input") }},
{{ HTMLElement("optgroup") }},
{{ HTMLElement("option") }},
{{ HTMLElement("select") }},
{{ HTMLElement("textarea") }}
</td>
<td>Indicates whether the user can interact with the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/download">download</a></code>
</td>
<td>{{ HTMLElement("a") }}, {{ HTMLElement("area") }}</td>
<td>
Indicates that the hyperlink is to be used for downloading a resource.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/draggable">draggable</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>Defines whether the element can be dragged.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/form#enctype">enctype</a></code>
</td>
<td>{{ HTMLElement("form") }}</td>
<td>
Defines the content type of the form data when the
<code>method</code> is POST.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/enterkeyhint">enterkeyhint</a></code>
</td>
<td>
{{ HTMLElement("textarea") }},
<a href="/Web/HTML/Global_attributes/contenteditable"><code>contenteditable</code></a>
</td>
<td>
The <a href="https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-enterkeyhint-attribute"><code>enterkeyhint</code></a>
specifies what action label (or icon) to present for the enter key on
virtual keyboards. The attribute can be used with form controls (such as
the value of <code>textarea</code> elements), or in elements in an
editing host (e.g., using <code>contenteditable</code> attribute).
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/for">for</a></code>
</td>
<td>
{{ HTMLElement("label") }},
{{ HTMLElement("output") }}
</td>
<td>Describes elements which belongs to this one.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/form">form</a></code>
</td>
<td>
{{ HTMLElement("button") }},
{{ HTMLElement("fieldset") }},
{{ HTMLElement("input") }},
{{ HTMLElement("label") }},
{{ HTMLElement("meter") }},
{{ HTMLElement("object") }},
{{ HTMLElement("output") }},
{{ HTMLElement("progress") }},
{{ HTMLElement("select") }},
{{ HTMLElement("textarea") }}
</td>
<td>Indicates the form that is the owner of the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/formaction">formaction</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("button") }}
</td>
<td>
Indicates the action of the element, overriding the action defined in
the {{ HTMLElement("form") }}.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/formenctype">formenctype</a></code>
</td>
<td>
{{ HTMLElement("button") }},
{{ HTMLElement("input") }}
</td>
<td>
If the button/input is a {{Glossary("submit button")}} (e.g. <code>type="submit"</code>),
this attribute sets the encoding type to use during form submission. If
this attribute is specified, it overrides the
<code>enctype</code> attribute of the button's
<a href="/Web/HTML/Element/form">form</a> owner.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/formmethod">formmethod</a></code>
</td>
<td>
{{ HTMLElement("button") }},
{{ HTMLElement("input") }}
</td>
<td>
If the button/input is a {{Glossary("submit button")}} (e.g. <code>type="submit"</code>),
this attribute sets the submission method to use during form submission
(<code>GET</code>, <code>POST</code>, etc.). If this attribute is
specified, it overrides the <code>method</code> attribute of the
button's <a href="/Web/HTML/Element/form">form</a> owner.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/formnovalidate">formnovalidate</a></code>
</td>
<td>
{{ HTMLElement("button") }},
{{ HTMLElement("input") }}
</td>
<td>
If the button/input is a {{Glossary("submit button")}} (e.g. <code>type="submit"</code>),
this boolean attribute specifies that the form is not to be validated
when it is submitted. If this attribute is specified, it overrides the
<code>novalidate</code> attribute of the button's
<a href="/Web/HTML/Element/form">form</a> owner.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/formtarget">formtarget</a></code>
</td>
<td>
{{ HTMLElement("button") }},
{{ HTMLElement("input") }}
</td>
<td>
If the button/input is a {{Glossary("submit button")}} (e.g. <code>type="submit"</code>),
this attribute specifies the browsing context (for example, tab, window,
or inline frame) in which to display the response that is received after
submitting the form. If this attribute is specified, it overrides the
<code>target</code> attribute of the button's
<a href="/Web/HTML/Element/form">form</a> owner.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/headers">headers</a></code>
</td>
<td>
{{ HTMLElement("td") }}, {{ HTMLElement("th") }}
</td>
<td>
IDs of the <code><th></code> elements which applies to this
element.
</td>
</tr>
<tr>
<td><code>height</code></td>
<td>
{{ HTMLElement("canvas") }},
{{ HTMLElement("embed") }},
{{ HTMLElement("iframe") }}, {{ HTMLElement("img") }},
{{ HTMLElement("input") }},
{{ HTMLElement("object") }},
{{ HTMLElement("video") }}
</td>
<td>
<p>
Specifies the height of elements listed here. For all other elements,
use the CSS {{cssxref("height")}} property.
</p>
<div class="note">
<p>
<strong>Note:</strong> In some instances, such as
{{ HTMLElement("div") }}, this is a legacy attribute, in
which case the CSS {{ Cssxref("height") }} property should
be used instead.
</p>
</div>
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/hidden">hidden</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>
Prevents rendering of given element, while keeping child elements, e.g.
script elements, active.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/meter#high">high</a></code>
</td>
<td>{{ HTMLElement("meter") }}</td>
<td>Indicates the lower bound of the upper range.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/href">href</a></code>
</td>
<td>
{{ HTMLElement("a") }}, {{ HTMLElement("area") }},
{{ HTMLElement("base") }}, {{ HTMLElement("link") }}
</td>
<td>The URL of a linked resource.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/hreflang">hreflang</a></code>
</td>
<td>
{{ HTMLElement("a") }}, {{ HTMLElement("link") }}
</td>
<td>Specifies the language of the linked resource.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/meta#http-equiv">http-equiv</a></code>
</td>
<td>{{ HTMLElement("meta") }}</td>
<td>Defines a pragma directive.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/id">id</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>
Often used with CSS to style a specific element. The value of this
attribute must be unique.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/Security/Subresource_Integrity">integrity</a></code>
</td>
<td>
{{ HTMLElement("link") }}, {{ HTMLElement("script") }}
</td>
<td>
<p>
Specifies a
<a href="/Web/Security/Subresource_Integrity">Subresource Integrity</a>
value that allows browsers to verify what they fetch.
</p>
</td>
</tr>
<tr>
<td>
<a href="/Web/HTML/Element/img#intrinsicsize"><code>intrinsicsize</code></a>
{{deprecated_inline}}
</td>
<td>{{ HTMLElement("img") }}</td>
<td>
This attribute tells the browser to ignore the actual intrinsic size of
the image and pretend it's the size specified in the attribute.
</td>
</tr>
<tr>
<td>
<a href="/Web/HTML/Global_attributes/inputmode"><code>inputmode</code></a>
</td>
<td>
{{ HTMLElement("textarea") }},
<a href="/Web/HTML/Global_attributes/contenteditable"><code>contenteditable</code></a>
</td>
<td>
Provides a hint as to the type of data that might be entered by the user
while editing the element or its contents. The attribute can be used
with form controls (such as the value of
<code>textarea</code> elements), or in elements in an editing host
(e.g., using <code>contenteditable</code> attribute).
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/img#ismap">ismap</a></code>
</td>
<td>{{ HTMLElement("img") }}</td>
<td>Indicates that the image is part of a server-side image map.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/itemprop">itemprop</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/track#kind">kind</a></code>
</td>
<td>{{ HTMLElement("track") }}</td>
<td>Specifies the kind of text track.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/label">label</a></code>
</td>
<td>
{{ HTMLElement("optgroup") }},
{{ HTMLElement("option") }},
{{ HTMLElement("track") }}
</td>
<td>Specifies a user-readable title of the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/lang">lang</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>Defines the language used in the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/script#language">language</a></code>
{{deprecated_inline}}
</td>
<td>{{ HTMLElement("script") }}</td>
<td>Defines the script language used in the element.</td>
</tr>
<tr>
<td><code>loading</code></td>
<td>
{{ HTMLElement("img") }}, {{ HTMLElement("iframe") }}
</td>
<td>
Indicates if the element should be loaded lazily
(<code>loading="lazy"</code>) or loaded immediately
(<code>loading="eager"</code>).
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/input#list">list</a></code>
</td>
<td>{{ HTMLElement("input") }}</td>
<td>Identifies a list of pre-defined options to suggest to the user.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/loop">loop</a></code>
</td>
<td>
{{ HTMLElement("audio") }},
{{ HTMLElement("marquee") }},
{{ HTMLElement("video") }}
</td>
<td>
Indicates whether the media should start playing from the start when
it's finished.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/meter#low">low</a></code>
</td>
<td>{{ HTMLElement("meter") }}</td>
<td>Indicates the upper bound of the lower range.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/max">max</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("meter") }},
{{ HTMLElement("progress") }}
</td>
<td>Indicates the maximum value allowed.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/maxlength">maxlength</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("textarea") }}
</td>
<td>Defines the maximum number of characters allowed in the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/minlength">minlength</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("textarea") }}
</td>
<td>Defines the minimum number of characters allowed in the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/media">media</a></code>
</td>
<td>
{{ HTMLElement("a") }}, {{ HTMLElement("area") }},
{{ HTMLElement("link") }}, {{ HTMLElement("source") }},
{{ HTMLElement("style") }}
</td>
<td>
Specifies a hint of the media for which the linked resource was
designed.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/form#method">method</a></code>
</td>
<td>{{ HTMLElement("form") }}</td>
<td>
Defines which <a href="/Web/HTTP">HTTP</a> method to use when
submitting the form. Can be <code>GET</code> (default) or
<code>POST</code>.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/min">min</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("meter") }}
</td>
<td>Indicates the minimum value allowed.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/multiple">multiple</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("select") }}
</td>
<td>
Indicates whether multiple values can be entered in an input of the type
<code>email</code> or <code>file</code>.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/muted">muted</a></code>
</td>
<td>
{{ HTMLElement("audio") }},
{{ HTMLElement("video") }}
</td>
<td>
Indicates whether the audio will be initially silenced on page load.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/name">name</a></code>
</td>
<td>
{{ HTMLElement("button") }}, {{ HTMLElement("form") }},
{{ HTMLElement("fieldset") }},
{{ HTMLElement("iframe") }},
{{ HTMLElement("input") }},
{{ HTMLElement("object") }},
{{ HTMLElement("output") }},
{{ HTMLElement("select") }},
{{ HTMLElement("textarea") }},
{{ HTMLElement("map") }}, {{ HTMLElement("meta") }},
{{ HTMLElement("param") }}
</td>
<td>
Name of the element. For example used by the server to identify the
fields in form submits.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/form#novalidate">novalidate</a></code>
</td>
<td>{{ HTMLElement("form") }}</td>
<td>
This attribute indicates that the form shouldn't be validated when
submitted.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/open">open</a></code>
</td>
<td>
{{ HTMLElement("details") }},
{{ HTMLElement("dialog") }}
</td>
<td>
Indicates whether the contents are currently visible (in the case of
a <code><details></code> element) or whether the dialog is active
and can be interacted with (in the case of a
<code><dialog></code> element).
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/meter#optimum">optimum</a></code>
</td>
<td>{{ HTMLElement("meter") }}</td>
<td>Indicates the optimal numeric value.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/pattern">pattern</a></code>
</td>
<td>{{ HTMLElement("input") }}</td>
<td>
Defines a regular expression which the element's value will be validated
against.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/a#ping">ping</a></code>
</td>
<td>{{ HTMLElement("a") }}, {{ HTMLElement("area") }}</td>
<td>
The <code>ping</code> attribute specifies a space-separated list of URLs
to be notified if a user follows the hyperlink.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/placeholder">placeholder</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("textarea") }}
</td>
<td>Provides a hint to the user of what can be entered in the field.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/video#playsinline">playsinline</a></code>
</td>
<td>
{{ HTMLElement("video") }}
</td>
<td>A Boolean attribute indicating that the video is to be played "inline"; that is, within the element's playback area. Note that the absence of this attribute does not imply that the video will always be played in fullscreen.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/video#poster">poster</a></code>
</td>
<td>{{ HTMLElement("video") }}</td>
<td>
A URL indicating a poster frame to show until the user plays or seeks.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/preload">preload</a></code>
</td>
<td>
{{ HTMLElement("audio") }},
{{ HTMLElement("video") }}
</td>
<td>
Indicates whether the whole resource, parts of it or nothing should be
preloaded.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/readonly">readonly</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("textarea") }}
</td>
<td>Indicates whether the element can be edited.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/referralpolicy">referrerpolicy</a></code>
</td>
<td>
{{ HTMLElement("a") }}, {{ HTMLElement("area") }},
{{ HTMLElement("iframe") }}, {{ HTMLElement("img") }},
{{ HTMLElement("link") }}, {{ HTMLElement("script") }}
</td>
<td>Specifies which referrer is sent when fetching the resource.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/rel">rel</a></code>
</td>
<td>
{{ HTMLElement("a") }}, {{ HTMLElement("area") }},
{{ HTMLElement("link") }}
</td>
<td>
Specifies the relationship of the target object to the link object.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/required">required</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("select") }},
{{ HTMLElement("textarea") }}
</td>
<td>Indicates whether this element is required to fill out or not.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/ol#reversed">reversed</a></code>
</td>
<td>{{ HTMLElement("ol") }}</td>
<td>
Indicates whether the list should be displayed in a descending order
instead of an ascending order.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/Accessibility/ARIA/Roles">role</a></code>
</td>
<td><a href="/Web/HTML/Global_attributes">Global attribute</a></td>
<td>Defines an explicit role for an element for use by assistive technologies.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/textarea#rows">rows</a></code>
</td>
<td>{{ HTMLElement("textarea") }}</td>
<td>Defines the number of rows in a text area.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/rowspan">rowspan</a></code>
</td>
<td>
{{ HTMLElement("td") }}, {{ HTMLElement("th") }}
</td>
<td>Defines the number of rows a table cell should span over.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/iframe#sandbox">sandbox</a></code>
</td>
<td>{{ HTMLElement("iframe") }}</td>
<td>
Stops a document loaded in an iframe from using certain features (such
as submitting forms or opening new windows).
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/th#scope">scope</a></code>
</td>
<td>{{ HTMLElement("th") }}</td>
<td>
Defines the cells that the header test (defined in the
<code>th</code> element) relates to.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/style#scoped">scoped</a></code>
{{non-standard_inline}} {{deprecated_inline}}
</td>
<td>{{ HTMLElement("style") }}</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/option#selected">selected</a></code>
</td>
<td>{{ HTMLElement("option") }}</td>
<td>Defines a value which will be selected on page load.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/shape">shape</a></code>
</td>
<td>{{ HTMLElement("a") }}, {{ HTMLElement("area") }}</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/size">size</a></code>
</td>
<td>
{{ HTMLElement("input") }},
{{ HTMLElement("select") }}
</td>
<td>
Defines the width of the element (in pixels). If the element's
<code>type</code> attribute is <code>text</code> or
<code>password</code> then it's the number of characters.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/sizes">sizes</a></code>
</td>
<td>
{{ HTMLElement("link") }}, {{ HTMLElement("img") }},
{{ HTMLElement("source") }}
</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/slot">slot</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>Assigns a slot in a shadow DOM shadow tree to an element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/span">span</a></code>
</td>
<td>
{{ HTMLElement("col") }},
{{ HTMLElement("colgroup") }}
</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/spellcheck">spellcheck</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>Indicates whether spell checking is allowed for the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/src">src</a></code>
</td>
<td>
{{ HTMLElement("audio") }},
{{ HTMLElement("embed") }},
{{ HTMLElement("iframe") }}, {{ HTMLElement("img") }},
{{ HTMLElement("input") }},
{{ HTMLElement("script") }},
{{ HTMLElement("source") }},
{{ HTMLElement("track") }},
{{ HTMLElement("video") }}
</td>
<td>The URL of the embeddable content.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/iframe#srcdoc">srcdoc</a></code>
</td>
<td>{{ HTMLElement("iframe") }}</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/track#srclang">srclang</a></code>
</td>
<td>{{ HTMLElement("track") }}</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/srcset">srcset</a></code>
</td>
<td>
{{ HTMLElement("img") }}, {{ HTMLElement("source") }}
</td>
<td>One or more responsive image candidates.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/ol#start">start</a></code>
</td>
<td>{{ HTMLElement("ol") }}</td>
<td>Defines the first number if other than 1.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/step">step</a></code>
</td>
<td>{{ HTMLElement("input") }}</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/style">style</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>Defines CSS styles which will override styles previously set.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/table#summary">summary</a></code>
{{deprecated_inline}}
</td>
<td>{{ HTMLElement("table") }}</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/tabindex">tabindex</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>
Overrides the browser's default tab order and follows the one specified
instead.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/target">target</a></code>
</td>
<td>
{{ HTMLElement("a") }}, {{ HTMLElement("area") }},
{{ HTMLElement("base") }}, {{ HTMLElement("form") }}
</td>
<td>
Specifies where to open the linked document (in the case of an
<code><a></code> element) or where to display the response received
(in the case of a <code><form></code> element)
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/title">title</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>Text to be displayed in a tooltip when hovering over the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Global_attributes/translate">translate</a></code>
</td>
<td>
<a href="/Web/HTML/Global_attributes">Global attribute</a>
</td>
<td>
Specify whether an element's attribute values and the values of its
<code><a href="https://dom.spec.whatwg.org/#text">Text</a></code> node
children are to be translated when the page is localized, or whether to
leave them unchanged.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/type">type</a></code>
</td>
<td>
{{ HTMLElement("button") }},
{{ HTMLElement("input") }},
{{ HTMLElement("embed") }},
{{ HTMLElement("object") }},
{{ HTMLElement("ol") }},
{{ HTMLElement("script") }},
{{ HTMLElement("source") }},
{{ HTMLElement("style") }}, {{ HTMLElement("menu") }},
{{ HTMLElement("link") }}
</td>
<td>Defines the type of the element.</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/usemap">usemap</a></code>
</td>
<td>
{{ HTMLElement("img") }}, {{ HTMLElement("input") }},
{{ HTMLElement("object") }}
</td>
<td></td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/value">value</a></code>
</td>
<td>
{{ HTMLElement("button") }}, {{ HTMLElement("data") }},
{{ HTMLElement("input") }}, {{ HTMLElement("li") }},
{{ HTMLElement("meter") }},
{{ HTMLElement("option") }},
{{ HTMLElement("progress") }},
{{ HTMLElement("param") }}
</td>
<td>
Defines a default value which will be displayed in the element on page
load.
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Attributes/width">width</a></code>
</td>
<td>
{{ HTMLElement("canvas") }},
{{ HTMLElement("embed") }},
{{ HTMLElement("iframe") }}, {{ HTMLElement("img") }},
{{ HTMLElement("input") }},
{{ HTMLElement("object") }},
{{ HTMLElement("video") }}
</td>
<td>
<p>
For the elements listed here, this establishes the element's width.
</p>
<div class="note">
<p>
<strong>Note:</strong> For all other instances, such as
{{ HTMLElement("div") }}, this is a legacy attribute, in
which case the CSS {{ Cssxref("width") }} property should be
used instead.
</p>
</div>
</td>
</tr>
<tr>
<td>
<code><a href="/Web/HTML/Element/textarea#wrap">wrap</a></code>
</td>
<td>{{ HTMLElement("textarea") }}</td>
<td>Indicates whether the text should be wrapped.</td>
</tr>