title HTML

HTML <title> Tag The title of the document is required in all HTML documents and is thus defined by the HTML <title> element. This element thus serves the purpose of specifying the title in the browser tab, providing a title for the page when it is added to favorites, and displaying a title for the … Read more

tr HTML

HTML <tr> Tag To define the rows in a table, the HTML <tr> tag is used. Both the <th> head cells and <td> data cells can be placed within a <tr> tag to define a single row of an HTML table, but the <tr> tag itself is either the direct child of <table> element or … Read more

th HTML

HTML <th> Tag A cell in an HTML table can be of two types: Header cell – The header information is placed inside a header cell. It is created using the <th> element. Data Cells – The main data is placed inside a data cell. It is created using the <td> element. To define the … Read more

td HTML

HTML <td> Tag To define the data cells of an HTML table the HTML <td> tag is used as the child element of <tr> (table row) tag. These cells are used to place data in the table. Multiple <td> data elements can be placed within an HTML <tr> tag. Within a <tr> tag, the grouped … Read more

Svg HTML

HTML <svg> Tag The HTML <svg> tag represents Scalable Vector Graphics. To describe two-dimensional vector and mixed vector/raster graphics in XML, HTML SVG is used. It is a modularized language and a W3C recommendation. The XML text files contain the definition of the SVG images and their behaviors. Every element and every attribute in an … Read more

Picture HTML

HTML <picture> Tag In responsive web designing, it is required to load different images based on their viewport, height, width, orientation, and pixel density, and this is where the HTML <picture> tag is used. It was introduced in HTML5. Multiple <source> elements and an <img> elements can be placed inside an HTML <picture> element. The … Read more