Author: Adam Wood

Adam is a technical writer who specializes in developer documentation and tutorials.
Disclosure: Your support helps keep the site running! We earn a referral fee for some of the services we recommend on this page. Learn more
  • <bdo> HTML Tag

    The <bdo> element is used override the default directionality of text. It is used to display characters from languages that are read from right-to-left, such as Hebrew and Arabic.
  • <bdi> HTML Tag

    The <bdi> element is used to isolate a small section of text which may be formatted to run in the opposite direction than the text around it (such as right-to-left in a left-to-right context). This is useful when a language with right-to-left directionality, such as Arabic or Hebrew, is used inline with left-to-right languages.
  • <acronym> HTML Tag

    The <acronym> element and title attribute was used to associate a full-text explanation with an acronym. The <acronym> element has been deprecated in HTML5 and <abbr> should be used instead.
  • <sup> HTML Tag

    Superscripts are Super! The <sup> script is used to identify text that should appear in a superscript position relative to… Read More...
  • <del> HTML Tag

    The <del> tag is used to identify text that has been deleted from a document but retained to show the history of modifications made to the document. Pair a <del> element with an <ins> element to identify the inserted text that replaced the deleted text.
  • <td nowrap>

    NOWRAP indicates that text should not wrap in the cell.
  • <textarea name="">

    Adds a name attribute to a <textarea> element and associates the name with the text added to the text area.
  • <textarea cols="">

    Specifies the visible width of a <textarea> element in average character widths. Defaults to 20 if not specified.
  • <textarea wrap="">

    Determines whether or not submitted text wraps when a <textarea> is included in a form submission.
  • <textarea onKeyPress="">

    Adds an event listener to a <textarea> element which executes JavaScript scripting when an onKeyPress event occurs.
  • <th> HTML Tag

    The <th> element is used to identify table cells that contain column header values rather than table data. A row of table heading values is created by nesting multiple <th> values in a parent <tr> element.
  • <title> HTML Tag

    The <title> element is a required HTML element used to assign a title to an HTML document. Page titles are not displayed in the browser window, but they are used as the page name by search engines and displayed by browsers in the title bar, on the page tab, and as the page name of bookmarked webpages.
  • <tr align="">

    Sets the horizontal alignment for the contents of each <td> element in a table row.
  • <tr background="">

    Identifies the URL of a file to be used as a background image for a table row.
  • <tt> HTML Tag

    The <tt> element was used to identify text to be displayed using the browser's default monospace or fixed-width font as it would appear on a fixed-width device such as a teletype. This element has been deprecated and the <code> element is an appropriate modern replacement for <tt>.
  • <u> HTML Tag

    The <u> element was originally used to identify text that should be underlined. The element was deprecated in HTML 4.01, but in HTML5 it was redefined to represent text that should be displayed in a way that is an unarticulated but stylistically distinct from the surrounding text. For example, one proper use of the <u> element is to identify misspelled terms.
  • <ul> HTML Tag

    The <ul> element is used to define an unordered list of items. Use an unordered list to contain <li> elements that do not need to be presented in numerical order and can be rearranged without changing the meaning of the list.
  • <var> HTML Tag

    The <var> element is used to identify a variable in a mathematical equation or computer program. Text marked with <var> tags is displayed in an italics font style by most browsers.
  • <wbr> HTML Tag

    The <wbr> element is used to define a word break opportunity in a string of text. It is particularly useful when you wish to define word break opportunities in a long unbroken string of text that might otherwise break improperly.
  • <img name="">

    Identified the image or provided additional information about it. Deprecated in HTML 4.0 in favor of other attributes.
  • <img longdesc="">

    Defines a URL at which can be found more information about the image. It was written out of the HTML5 specification, but its status is not quite so clear as other deprecated features.
  • <img align="">

    Was previously used to specify the alignment and placement of an image relative to the surrounding text. It has been deprecated and should not be used.
  • <img hspace="">

    Previously used to add horizontal space on both side of an image. It is now deprecated.
  • <img ismap>

    Identifies an image as a server-side image map. When the containing anchor link is clicked, the coordinates of the mouse will be included in the request.