Results 21 - 32 of 32

<b>

The HTML <b> Element represents a span of text stylistically different from normal text, without conveying any special importance or relevance. It is typically used for keywords in a summary, product names in a review, or other spans of text whose typical presentation would be boldfaced. Another example of its use is to mark the lead sentence of each paragraph of an article.
Element HTML HTML text-level semantics HTML:Flow content HTML:Phrasing content Reference Web

<a>

The HTML Anchor Element (<a>) defines a hyperlink to a location on the same page or any other page on the Web. It can also be used (in an obsolete way) to create an anchor point—a destination for hyperlinks within the content of a page, so that links aren't limited to connecting simply to the top of a page.
Content Element HTML HTML text-level semantics Reference Web

<acronym>

The HTML Acronym Element (<acronym>) allows authors to clearly indicate a sequence of characters that compose an acronym or abbreviation for a word. This element has been removed in HTML5. Use <abbr> element.
Element Élément HTML HTML:Flow content Obsolete Reference Référence Web

<embed>

The HTML <embed> Element represents an integration point for an external application or interactive content (in other words, a plug-in).
Element HTML HTML embedded content HTML5 Reference Web

<map>

The HTML <map> element is used with <area> elements to define an image map (a clickable link area).
Element HTML HTML embedded content Multimedia Reference Web

<source>

The HTML <source> element specifies multiple media resources for either the <picture>, the <audio> or the <video> element. It is an empty element. It is commonly used to serve the same media content in multiple formats supported by different browsers.
Element HTML HTML embedded content Media Reference Web

<track>

The HTML <track> element is used as a child of the media elements—<audio> and <video>. It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles. The tracks are formatted in WebVTT format (.vtt files) — Web Video Text Tracks.
Element HTML HTML embedded content HTML5 Multimedia Reference Web

Determining the dimensions of elements

There are several properties you can look at in order to determine the width and height of elements, and it can be tricky to determine which is the right one for your needs. This article is designed to help you make that decision.  Note that all these properties are read-only.  If you want to set the width and height of an element, use  width and height; or, the overriding min-width and max-width, and min-height and max-height properties.
client height Client width CSSOM View Guide Intermediate NeedsCompatTable NeedsSpecTable offsetHeight offsetWidth size of displayed content

<audio>

The HTML <audio> element is used to embed sound content in documents. It may contain one or more audio sources, represented using the src attribute or the <source> element; the browser will choose the most suitable one.
Element HTML HTML embedded content HTML5 Media Multimedia NeedsMobileBrowserCompatibility Reference Web

<output>

The HTML <output> element represents the result of a calculation or user action.
Element HTML HTML forms HTML:Flow content HTML5 NeedsMobileBrowserCompatibility Reference Web

<span>

The HTML <span> element is a generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang. It should be used only when no other semantic element is appropriate. <span> is very much like a <div> element, but <div> is a block-level element whereas a <span> is an inline element.
Element HTML HTML text-level semantics HTML:Flow content Reference Web

<video>

Use the  HTML <video> element to embed video content in a document. The video element contains one or more video sources. To specify a video source, use either the src attribute or the <source> element; the browser will choose the most suitable one.
Element HTML HTML embedded content HTML5 Media Multimedia NeedsMobileBrowserCompatibility Reference Web