HTML i tag
Description: The HTML i tag makes its content rendered in italic font style. The <i> tag defines a part of text in an alternate voice or mood. The content of the <i> tag is usually...
View ArticleHTML big tag
Description: The HTML big tag makes its content rendered in a bigger font size. Its effect can be replaced by the "font-size" property of CSS. If there's a need to provide emphasis, you can use the...
View ArticleHTML tt tag
Description: The HTML tt tag renders its content as a teletype (with a fixed-width font). The <tt> tag defines teletype text. Note: The <tt> tag is not supported in HTML5. Use CSS instead....
View ArticleHTML small tag
Description: The HTML small tag makes its content to be rendered with a smaller font size. The <small> tag defines smaller text Note: The presentational nature of this element makes it a good...
View ArticleHTML base tag
Description: The <base> tag specifies the base URL/target for all relative URLs in a document. The HTML base tag sets the base URI that will act as starting point for all relative URIs present...
View ArticleHTML basefont tag
Description: The HTML basefont tag specifies a default font-color, font-size, or font-family for all the text in a document. With the help of the basefont tag you can establish the default value of...
View ArticleHTML 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 Article