HTML bdo tag
Description: bdo stands for Bi-Directional Override. The HTML bdo tag allows authors to override the bidirectional algorithm for specific fragments of text. What it basically does is to specify the...
View ArticleHTML bgsound tag
Description: The HTML bgsound tag is a non-standard element. The HTML <bgsound> tag is used to play a soundtrack in the background. This tag is for Internet Explorer documents only. Example:...
View ArticleHTML blink tag
Description: The HTML blink tag is used to enclose a text to make it blink. This tag was supported by Netscape and now this is obsolete. Example: <blink>This text will blink in Netscape Version...
View ArticleHTML blockquote tag
Description: The HTML blockquote tag inserts block quotations. As it is a block-level element, is useful, for example, to insert long quotations that are divided in paragraphs. User agents usually...
View ArticleHTML body tag
Description: The <body> tag defines the document's body. The HTML body tag acts as a container for all the renderable content of the document. The <body> element contains all the contents...
View ArticleHTML br tag
Description: The HTML <br /> tag is used to give a line break. The HTML br tag inserts a single line break. The <br> tag is an empty tag which means that it has no end tag. Differences...
View ArticleHTML button tag
Description: The HTML button tag inserts a button control in a form or document. Differently from the HTML input element using "button" in the "type" attribute, this button can contain other elements...
View ArticleHTML caption tag
Description: The HTML caption element gives a title for the table in which it is declared. It is usually displayed at the top of the table (by default) and with a bigger font size. The HTML caption...
View ArticleHTML center tag
Description: The HTML center tag is used to center-align HTML elements. The <center> tag is not supported in HTML5. Use CSS instead. The <center> element is deprecated in HTML 4.01 and...
View ArticleHTML cite tag
Description: The HTML cite tag inserts a citation or reference to other resources. It is mostly used to refer to other authors when making a quotation. The cite element has a very simple purpose: to...
View ArticleHTML code tag
Description: The HTML code tag inserts text representing computer code. It can be useful to show functions, programming code or variables. The content of this element is usually rendered by user...
View ArticleHTML col tag
Description: The <col> tag specifies column properties for each column within a <colgroup> element. The <col> tag is useful for applying styles to entire columns, instead of...
View ArticleHTML Colgroup Tag
Description: The HTML colgroup tag is used for specifying properties for a group of columns within a table. If you need to apply different properties to a column within a colgroup, you can use the...
View ArticleHTML dd tag
Description: The HTML dd tag contains a description in a definitions list (HTML dl element). These descriptions may be visually associated to a term (HTML dt element) or not. In definition lists a...
View ArticleHTML Del tag
Description: The HTML del tag contains text that is supposed to be deleted from the document. It is useful when authors need to show which piece of content has been deleted during an update of the...
View ArticleHTML dfn tag
Description: The <dfn> tag is a phrase tag. It defines a definition term. The HTML dfn tag contains a term which is described by the paragraph where it is placed. It is useful to markup a term...
View ArticleHTML dir tag
Description: The <dir> tag is used to list directory titles. The HTML dir tag is used for specifying a directory list. This is very similar to <ul> tag but now this is deprecated. Note:...
View ArticleHTML div tag
Description: The HTML div tag is used for defining a section of your document. With the div tag, you can group large sections of HTML elements together and format them with CSS. The difference between...
View ArticleHTML dl tag
Description: The HTML dl tag inserts a definitions list, composed by two elements: terms (HTML dt element) and descriptions (HTML dd element). In definition lists, terms can be associated to one or...
View ArticleHTML dt tag
Description: The HTML dt tag is used to define the start of a term in a definition list. A definition list is similar to other lists but in a definition list, each list item contains two entries: a...
View Article