-
HTML <tbody> tag
HTML <tbody> tag is used to group the table rows (<tr>) together, which indicates that this is body part of a table (<table>). The <tbody> tag must be a child of <table> element. The <tbody> is used along with <thead> and <tfoot> which shows the different part of the table that are table head, table…
-
HTML Table
HTML table tag is used to display data in tabular form (row * column). There can be many columns in a row. We can create a table to display data in tabular form, using <table> element, with the help of <tr> , <td>, and <th> elements. In Each table, table row is defined by <tr> tag,…
-
HTML SVG
The HTML SVG is an acronym which stands for Scalable Vector Graphics. HTML SVG is a modularized language which is used to describe graphics in XML. It describe two-dimensional vector and mixed vector/raster graphics in XML. It is a W3C recommendation. SVG images and their behaviors are defined in XML text files. So as XML files, you…
-
HTML <sup> tag
HTML <sup> tag is termed as a superscript tag which is used to define superscript text. The text within <sup> tag appears with an upper baseline and renders with smaller font size than surrounding text. The <sup> tag is useful for defining Mathematical formulas and footnotes. Syntax Following are some specifications about the HTML <sup>…
-
HTML Summary Tag
The HTML <summary> tag is used with <details> tag. It is used as a summary, caption or legend for the content of a <details> element. It is used within the <details> tag. It must have a closing tag. The <summary> tag is new and introduced in HTML 5. HTML summary tag example Output:JavaTpoint Summary Let’s…
-
HTML <sub> tag
HTML <sub> tag is termed as Subscript tag and which is used to define subscript text. The text within <sub> renders with a lower baseline and with a smaller font than surrounding text font. The <sub> tag is useful for presenting mathematical formula and chemical formulas such as H2O. Syntax Following are some specifications about…
-
HTML Style
HTML Style is used to change or add the style on existing HTML elements. There is a default style for every HTML element e.g. background color is white, text color is black etc. The style attribute can by used with any HTML tag. To apply style on HTML tag, you should have the basic knowledge of css…
-
HTML <strong> tag
HTML <strong> tag is a phrase tag which is used to represent the important text of a document on the browser. The text within <strong> text has semantic importance for the search engines and emphasize the text with special intonation. The text within <strong> tag renders in bold font on the browser by default; however…
-
HTML <strike> tag (Not supported in HTML5)
HTML <strike> tag was used to strike a line through the text, contained within it. Syntax: Following are some specifications about the HTML <strike> tag Display Inline Start tag/End tag Both Start and End tag Usage Formatting Example Output: Attribute: Tag-specific attributes: The <strike> tag does not contain any specific attribute.
-
HTML <span> tag
HTML <span> tag is used as a generic container of inline elements. It is used for styling purpose to the grouped inline elements (using class and id attribute or inline style). The <span> tag does not have any default meaning or rendering. The <span> tag can be useful for the following task: Syntax: Following are…
